Flutter 에러 모여

다은·2021년 4월 30일
0

🎯 Flutter

목록 보기
1/27
  • MyApp에서 main.dart 분리시킨 후 super값을 못가져오는 현상
    message :: [getter 'value' null]
    solution :: Expanded -> Column으로 위젯 변경

  • Positioned 위젯 적용 안됨
    solution :: 상위에 Stack 위젯 추가

  • Page Router
    message :: [There are multiple heroes that share the same tag within a subtree.]
    solution :: 화면에 있는 모든 FloatingActionButton에 "heroTag:null" 속성추가

  • showModalBottomSheet 높이 조절 안될 때
    solution :: 1. isScrollControlled: true 2. Container로 감싸서 높이 설정

  • the number of method references in a .dex file cannot exceed 64k. flutter
    solution :: defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    ........
    multiDexEnabled true
    }
    dependencies {
    ...........
    implementation 'com.android.support:multidex:1.0.3'
    }

  • 기존에 동작하던 플러그인이 안될 때
    message :: MissingPluginException
    solution :: firebase_auth 플러그인 사용x

  • 푸시 안올 때
    solution :: 디바이스 절전모드인지 확인 (안드로이드)

  • 키보드 올라왔을 때 bottom overflow
    solution :: scaffold에 resizeToAvoidBottomInset : false 추가

profile
천방지축 어리둥절 빙글빙글

0개의 댓글