반응형 플러터47 [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. [flutter] Incorrect use of ParentDataWidget. 문제 상황 Expanded위젯을 다른 위젯에 감싸면서 Incorrect use of ParentDataWidget. 에러 발생했습니다. 해결 방법 Expanded 위젯으로는 간격을 줄 수 있는 위젯이 정해져있다는 것을 인지하지 못했습니다. Expanded 위젯으로 감쌀 수 있는 위젯은 오직 Column, Row, Flex 위젯만 가능합니다. 2021. 11. 15. 이전 1 ··· 7 8 9 10 11 12 다음 반응형