본문 바로가기
반응형

Development Solutions138

[flutter] How to hold the bottom of the widget (위젯의 하단 고정 방법) [flutter] How to hold the bottom of the widget [flutter] 위젯의 하단 고정 방법 문제 상황 (a problem situation) 위젯을 UI화면의 하단에 고정하고 싶습니다. (I want to fix the widget to the bottom of the UI screen.) body: Column( children: [ Body(), Container( height: 50, child: AdWidget( ad: _banner, ), ), ], ), 해결 방법 (Workaround) 하단에 고정하고자 하는 위젯 호출 전에 Spacer()를 호출합니다. (Call Spacer() before calling the widget you want to pin to.. 2021. 11. 20.
[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.
반응형