반응형
오호 내내, 2.x 버전 소스를 3.x SDK에 맞춰 수정하고 실행하니, 떡 하니 나타난 오류다. 쩝
검색을 해보니, 간단한 해결책이 있어 기록한다.
WidgetsFlutterBinding.ensureInitialized(); 이 한 줄을 넣고 flutter run을 실행하니, 정상적으로 UI가 나왔다.
void main() {
WidgetsFlutterBinding.ensureInitialized();
AppSettings settings = AppSettings();
// Don't allow landscape mode
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitUp, DeviceOrientation.portraitDown])
.then((_) => runApp(MyApp(settings: settings)));
}
반응형
'프로그래밍 > Flutter' 카테고리의 다른 글
플러터] Podfile is out of date (0) | 2023.07.25 |
---|---|
Flutter run key commands. (0) | 2022.09.13 |
플러터 첫 시작, 요란한? 오류를 만나다 : Error (Xcode): No profiles for 'com.example.counterApp' were found: (0) | 2022.09.13 |
dart language 초간단 훑어보기 (0) | 2022.09.13 |
플러터 SDK설치 후 PATH설정 및 doctor 실행 결과 화면 (0) | 2022.09.13 |