반응형 error28 [Solved][Flutter] static variable must initialized in dart [Flutter] static variable must initialized in dart 문제 상황 (Problem) static BannerAd _banner; 위와 같이 변수를 선언하면 최신 버전 dart에서 초기화를 하지 않아 에러가 발생한다. 일반 변수라면 late키워드를 붙여서 해결할 수 있지만, static 변수는 late를 붙일 수 없다. 그렇다면 어떻게 해결해야 할까? [English](If you declare a variable like this An error occurs because it is not initialized in the latest version of dart. If it is a general variable, it can be solved by attaching.. 2023. 7. 30. [Flutter][Solved] The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' [Flutter][Solved] The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' 문제 상황 (Problem) Scaffold의 appBar에 Widget을 대입하면, 아래와 같은 빌드 에러가 발생한다. [English](If Widget is assigned to Scaffold's appBar, the following build error occurs.) The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' 해결 방법 (Solution) Widget을 반환하는 대신에 Preferred.. 2023. 7. 28. [Flutter][Solved] Error: The argument type 'bool?' can't be assigned to the parameter type 'bool' because 'bool?' is nullable and 'bool' isn't. 문제 상황 (Problem) flutter 앱을 빌드하는 중에 아래와 같은 에러가 발생했다. firebase_auth-3.2.0 Error: The argument type 'bool?' can't be assigned to the parameter type 'bool' because 'bool?' is nullable and 'bool' isn't. 해결 방법 (Solution) 1. flutter pub upgrade 수행 2. flutter doctor 체크 참고 사이트 https://github.com/firebase/flutterfire/issues/9015 🐛 [cloud_firestore] Xcode build fails with errors: Expected a type in Firebas.. 2023. 7. 26. Flutter Unknown upstream repository issue (solved) 문제 상황 (Problem) $ flutter doctor 를 실행했을 때 아래와 같은 워닝 문구가 나온다. [!] Flutter (Channel unknown, 3.7.0, on macOS 13.4.1 22F82 darwin-arm64, locale ko-KR) ! Flutter version 3.7.0 on channel unknown at /Users/sjh/development/flutter Currently on an unknown channel. Run `flutter channel` to switch to an official channel. If that doesn't fix the issue, reinstall Flutter by following instructions at https:.. 2023. 7. 26. 이전 1 2 3 4 5 6 7 다음 반응형