[flutter error] Could not prepare isolate. / Could not launch engine with configuration.

2023. 7. 30. 11:31Programming/Dart & Flutter

반응형

오류

flutter 문서를 보면서 실습하는 중에 에러가 나왔다.

debug error

코드는 맞는데 계속 오류가 나왔다. 검색해 보니 아주 기초적인건데 실수했다.

 

해결법

main 함수가 없어서 나는 오류였다. 

void main() => runApp(YourMainApp());

 

또 다른 해결방법은 treminal(=cmd = powershell 등등)에 명령어를 치는 것이다.

flutter clean
flutter run

 

정상 작동

 

참조

https://stackoverflow.com/questions/50654820/flutter-could-not-prepare-to-run-the-isolate

 

Flutter Could not prepare to run the isolate

I started a flutter project using Android studio. The android emulator opened the project smoothly. When I opened the Ios emulator, the project worked smoothly. When I ran the android emulator again,

stackoverflow.com

 

반응형

'Programming > Dart & Flutter' 카테고리의 다른 글

Dart Flutter 무료 인강 추천  (0) 2023.01.28
unable to find bundled java version flutter windows  (0) 2023.01.17
Dart VSCode 실행  (0) 2023.01.13
Flutter가 Dart를 쓰는 이유?  (0) 2023.01.11
Dart란?  (0) 2023.01.10