반응형 build9 [Solved][ios] CocoaPods did not set the base configuration of your project because your project already has a custom config set. [Solved][Ios][Flutter] CocoaPods did not set the base configuration of your project because your project already has a custom config set. 에러메시지 (Error) pod install --repo-update 위 명령을 내리다가 발생한 에러 메시지 [Eng](The error message that occurred while executing the above command) [!] CocoaPods did not set the base configuration of your project because your project already has a custom config set. In ord.. 2023. 8. 16. [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 성능 개선 방법 (앱 개발) 플러터 성능 개선 방법 요약 build 메소드 부하(load)를 최소화앱에서 UI변경이 있을 때마다 build 메소드이 호출됨큰 위젯보다는 작은 위젯으로 쪼개자위젯을 const로 선언하자위젯 트리의 변경을 최소화위젯 트리(논리적 구조) -> 엘리먼트 트리(위젯트리와 렌더트리 매핑) -> 렌더 트리(실제 렌더링되는 구조)위젯트리 변경이 없으면 rebuild할 때 렌더 트리를 변경하지 않는다가급적 ListView 보다는 ListView.builder 사용ListView는 모든 위젯을 빌드하여 성능 저하 (메모리에 저장 유지 o)ListView.builder는 화면에 표시되는 위젯만 동적 빌드 (메모리 저장 유지 x)성능이 많이 필요한 작업은 IsolateDart는 단일 스레드 언어. 단 하나의 Isolate.. 2023. 1. 8. 이전 1 2 3 다음 반응형