본문 바로가기
반응형

Debug8

[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] Dart Unhandled Exception: MissingPluginException(No implementation found for method loadBannerAd on channel plugins.flutter.io/google_mobile_ads) 에러 출력 내용 Dart Unhandled Exception: MissingPluginException(No implementation found for method loadBannerAd on channel plugins.flutter.io/google_mobile_ads) 대응책 flutter 자체 기능인 hot reload로는 해결되지 않습니다. 아래 절차대로 새로 빌드하면 해결되곤 합니다. 1. flutter clean 2. flutter run 2021. 11. 13.
[flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) [flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) 예를 들어, 아래와 같은 코드에서는 Column 안에 여러 위젯과 함께 ListView가 구현되어있다. (For example, In the code below, ListView is implemented with several widgets in the column.) @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( appBar: new AppBar( title: new .. 2021. 11. 6.
반응형