Programming/Dart & Flutter

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

hoya_315 2023. 7. 30. 11:31
반응형

오류

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

 

반응형