일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- stack
- Apple
- Code
- iOS16
- window
- Firebase
- darkmode
- FLUTTER
- 개발자
- Swift
- 웹뷰
- 한글
- github
- IOS
- Git
- rxswift
- Session
- JPA
- Notification
- Xcode
- SwiftUI
- MacOS
- view
- mac
- UIButton
- appstore
- Python
- error
- Realm
- Archive
- Today
- Total
목록Flutter/Error (4)
EEYatHo 앱 깎는 이야기
Flutter로 개발한 앱이 iOS 디바이스에서 실행하려하면 아래 메세지의 경고창이 뜨고 하얀 화면만 보이게 된다. 한국어 : 개발자를 확인할 수 없기 때문에 'iproxy'을(를) 열 수 없습니다. 영어 : macOS cannot verify the developer of 'iproxy'. 처음엔 코드사이닝 문제인 줄 알았는데, 그냥 macOS 보안 문제였다. 해결 방법 : 시스템 환경설정 -> 보안 및 개인 정보 보호 -> "확인 없이 허용" 클릭
아래의 플러터 코드랩 실습 중에, https://codelabs.developers.google.com/codelabs/flutter-boring-to-beautiful#2 This GoRouteInformationParser needs to be used with GoRouteInformationProvider, did you forget to pass in GoRouter.routeInformationProvider to the Router constructor? 'package:go_router/src/go_route_information_parser.dart': Failed assertion: line 148 pos 13: 'routeInformation is DebugGoRouteInformat..
맥 OS 카탈리나부터, 터미널이 bash에서 zsh로 바뀌었습니다. 터미널의 환경변수를 bash에서는 ~/.bash_profile에 적었었지만, zsh에서는 ~/.zshrc에 적습니다. 때문에, zsh를 쓰시는 분들은 bash_profile에 Path 추가해줘도 터미널에서 flutter 명령을 인식하지 못합니다. ( "command not found: flutter" 에러가 뜨게 됩니다. ) zsh 터미널에 환경변수 추가하기 ~/.zshrc 파일끝에 아래 코드를 적어주시면 됩니다. 터미널로 하셔도 되고, 직접 GUI로 열어서 적으셔도 됩니다. export PATH="$PATH:[flutter bin폴더 경로]" 참고 블로그 : https://eunjin3786.tistory.com/221 아기개발자님 감..
아래, 플러터 공식 페이지의 튜토리얼(codelab)을 따라하다가, https://flutter-ko.dev/docs/get-started/codelab 첫 Flutter 앱 작성하기 - 1부 flutter-ko.dev english_words 라이브러리를 설치 후, 빌드시 에러가 발생하였다. english_words 때문에 건전한(sound) null safety로 실행할 수 없다는 것. 1. null safety 에러 무시 아래처럼, 해당 에러를 무시하는 방법도 있지만, 맘에 들지 않는다.. $ dart --no-sound-null-safety run 2. 라이브러리의 null safety 체크 및 버전 변경 라이브러리가 null-safety한지 체크해주는 명령어가 있다. $ dart pub outd..