일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- error
- 데스크테리어
- AppleSilicon
- GitHub
- list
- VSCode
- 간단리뷰
- listview
- react
- Android
- 춘식
- visualstudiocode
- GetX
- 내돈내산
- 데스크셋업
- AppBar
- TextField
- 라이언
- sqflite
- swift
- Git
- wrap
- Flutter
- M1
- ios
- 플러터
- xcode
- database
- 카카오
- datetime
- Today
- Total
목록전체 글 (65)
welcome to my blog

git 기존 설정된 아이디를 다른 아이디로 바꾸기 * A계정으로 사용하다가 B계정에 push할게 있어서 바꿔야하는 경우 1. 프로젝트 git config 설정을 변경해준다 다음 명령어를 실행하면 현재 프로젝트의 깃 설정현황을 볼 수 있다. git config --list *여기서 확인해야 할 사항은 user.name / user.email / remote.origin.url 나의 계정 아이디 , 로그인 계정 이메일, 올리고자 하는 repository url 인지 확인 확인 후에는 control + z 로 빠져나오면 됨 변경이 필요하다면 --> git config --global user.name [계정아이디] git config --global user.email [git로그인이메일] git remote..
Flutter : Could not build the precompiled application for the device. Error launching application on iPhone 라는 에러가 생겼을 경우 flutter pub upgrade flutter clean 해주니까 해결되었다.... ios > Podfile에 post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| # drop deployment target so it works with ios14 config.build_settings.delete 'IPHONEOS_DEPL..
Failed to register observatory port with mDNS with error ios -> Runner -> Info.plist에 NSBonjourServices _dartobservatory._tcp 추가해주면된다. https://docs.flutter.dev/development/add-to-app/ios/project-setup#local-network-privacy-permissions
Try launching Xcode and selecting "Product > Run" to fix the problem: -> Xcode열어서 Runner -> Signing & Capabilities Team 설정을 확인할것... https://stackoverflow.com/questions/62335493/could-not-run-build-ios-iphoneos-runner-app-on-try-launching-xcode-and-selecting Run" to fix the problem" data-og-description="When running an iOS App on a real iPhone (not Simulator) you may run into this problem. The re..

안드로이드스튜디오 메모리세팅 shift 연속 두번동작 -> memory settings -> IDE max heap size 설정 -> apply -> 재시작 메모리 인디케이터 설정하기 shift 연속 두번동작 -> show memory indicator -> on으로 설정 우측 하단에 메모리 표시가 뜬다
플러터에서 지원하는 테스트 종류는 총 3가지로 단위테스트 위젯테스트 통합테스트 이다. 이번 게시글에서는 1번과 2번을 다루겠다. 참고) 특정 위젯을 찾으려면 find 를 이용한다. ex) find.text('apply'); finder 객체 함수는 (https://api.flutter.dev/flutter/flutter_test/CommonFinders-class.html) 참고 (text, key, icon 등등 으로 위젯을 찾을 수 있음) 1. 단위테스트 test 라이브러리를 종속성에 추가(pubspec.yaml 에 직접 입력 혹은 명령어로 추가) flutter pub add test --dev 기본구조 import 'package:test/test.dart'; import 'package:unit_..