일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 카카오
- 플러터
- 데스크테리어
- GitHub
- error
- 데스크셋업
- wrap
- Git
- datetime
- AppleSilicon
- visualstudiocode
- GetX
- xcode
- 내돈내산
- Flutter
- 간단리뷰
- swift
- TextField
- ios
- M1
- AppBar
- sqflite
- 라이언
- listview
- react
- 춘식
- list
- Android
- VSCode
- database
- Today
- Total
목록Flutter (49)
welcome to my blog
To solve this you can change the Build Configuration of the Run schema in xcode: open project in xcode 1.) tap on Runner, and Edit scheme 2.) Select Release for the Build Configuration of the Run schema https://stackoverflow.com/questions/63147988/problem-launching-an-app-in-release-mode-flutter-on-an-ios-simulator Problem launching an app in release mode Flutter on an iOS simulator I can no lon..
flutter build error 발생 시 해볼 수 있는 방법 몇가지 정리 CocoaPods not installed. Skipping pod install flutter...... 코코아팟 있는데 외않되,,,, 1. cocoapods 재설치 //삭제 sudo gem uninstall cocoapods //설치 sudo gem install cocoapods //특정버전 설치 sudo gem install cocoapods -v 0.0.0 2. androidstudio 껐다켜기 AndroidStudio 상단 File -> Invalidate Caches/Restart 해주기 3. ios 빌드 해주고 실행 flutter build ios 이번엔 3번으로 해주니 되었음. ' - '
이전에 디바이스에 내 단말기 등록하는 방법을 찾았고... 이제 되겠지 하고 run 했는데 오류가 뜨면서 안되는거다. 일단 xcode 를 켜서 run 했는데 다음과 같은 에러가 떴다. Command PhaseScriptExecution failed with a nonzero exit code 라는 에러가 뜨는것이었다. 원인을 생각해보면.. pod file 관련되어서 문제가 생긴듯 싶다. (프로젝트를 오랜만에 켜기도 했고 그동안 업데이트도 많이 있었다..) 프로젝트의 cocoapods을 삭제하고 재설치 해보는 방법으로 해결하였다. 일단 다음 명령어를 다 실행했더니 해결이 되긴했다. 터미널에서 flutter프로젝트 폴더에 접근해서 다음과같은 명령어를 실행해준다. (라이브러리 삭제 후 다시 설치) rm -rf ..
오랜만에 다시 flutter 개발을 해보려고 이전 프로젝트를 켰는데 디바이스 목록에 연결된 아이폰이 잡히지 않는 문제가 발생했다. 컴퓨터 신뢰하겠냐는 팝업창에 신뢰 눌러줬는데도 불구하고 되지 않는것이었다. 그래서 알아본 결과 핸드폰에서 개발자모드 설정을 켜줘야 한다는 사실을 알게되었다. 아이폰 설정 -> 개인정보 보호 및 보안 -> 개발자모드 -> 켬으로 설정 -> 재시동 -> '개발자모드 켜시겠습니까?' 팝업에 '켜기' 선택 이제 다시 디바이스 목록에서 refresh 해주면 연결된 나의 폰을 선택할 수 있게되었다!
윤년계산 if(((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)){ int day = 29; } 달의 마지막날계산 int endDay(int year, int month){ DateTime date = DateTime(year, month+1, 0); return date.day; }
리스트뷰를 하단으로 스크롤하면서 데이터를 그때그때 받아 올 때 사용할 만한 라이브러리 사용 라이브러리 pull_to_refresh: ^2.0.0 dio: ^4.0.4 사용 플러그인 FlutterJsonBeanFactory 4.3.2 임시로 데이터가 필요하기때문에 instantwebtools.net의 fake rest api 를 이용하여 테스트 해보겠다. https://instantwebtools.net/fake-rest-api Fake Rest API | Instant Web Tools When Data Getting Reset? As of now, we are going to open this API to the world through the public internet. So people could..