본문 바로가기
반응형

Development Solutions/Flutter & Dart65

[flutter] 빌드 중 firestore\streamhandler\TransactionStreamHandler.java uses unchecked or unsafe operations. 문제 상황 빌드 중에 빌드 중 firestore\streamhandler\TransactionStreamHandler.java uses unchecked or unsafe operations.와 같은 warning이 갖가지 flutter pub package에서 발생했다. 해결 방법 1. android/app/build.gradle 파일에서 minSdkVersion을 21로 설정 2. flutter pub upgrade 3. flutter 프로젝트 다시 빌드 (shift + f10) 참고 링크 https://github.com/FirebaseExtended/flutterfire/issues/1401 [cloud_firestore] CloudFirestorePlugin.java uses or overrid.. 2021. 11. 19.
[Solved][Flutter] How to remove the DEBUG ribbon at the top right of the app (앱 우측 상단의 DEBUG 리본 제거하는 방법) flutter 프로젝트가 가장 처음 시작되는 (보통 main.dart) 소스 코드 파일에서 build 함수 내의 위젯 내에 아래와 같이 선언하면 됩니다. (In the source code file where the flutter project is first launched (usually main.dart) You can declare it in the widget within the build function as follows.) debugShowCheckedModeBanner = false 다시 DEBUG리본을 띄우고 싶다면, 위 값을 true로 선언하면 되겠습니다. (If you want to float the DEBUG ribbon again, Declare the above value as.. 2021. 11. 18.
[flutter] Unimplemented handling of missing static target 문제 상황 빌드를 하려는데 Unimplemented handling of missing static target 에러가 뜹니다. 해결 방법 flutter clean 후, flutter run하면 해결됩니다. > android studio ide에서 flutter clean 방법 https://studiodoc.tistory.com/21 2021. 11. 17.
[flutter] RenderPhysicalModel object was given an infinite size during layout. 문제 상황 위젯에 무한한 크기가 주어졌습니다. 그래서 그릴 수가 없는 문제였습니다. 해결 방법 크기를 설정한 Container로 감싸고, 그 Container를 SingleChildScrollView로 감싸면 해결할 수 있습니다. 2021. 11. 16.
반응형