본문 바로가기
반응형

방법55

[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] 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.
[flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) [flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) List.from을 이용해서 복사하면 깊은 복사가 이루어진다. [English](Copying using List.from makes a deep copy.) this.reviews = List.from(reviews); https://stackoverflow.com/questions/63091889/flutter-firebase-get-array-from-firestore-and-assign-it-to-a-list flutter firebase get array from Firestore and assign it to a list I have a collection in Firestore. It has .. 2021. 11. 1.
반응형