Vintage appMaker의 Tech Blog

[Flutter ]Error: Dart library 'dart:ui' is not available on this platform 본문

Source code or Tip/Flutter & Dart

[Flutter ]Error: Dart library 'dart:ui' is not available on this platform

VintageappMaker 2023. 10. 21. 16:40

사용에 문제없던 Flutter project가 

git으로 새롭게 clone 했을 때
갑자기 다음과 같은 에러를 발생할 때가 있다. 

 

 Error: Dart library 'dart:ui' is not available on this platform

 

이럴 경우, 구글링을 하다보면 의외로 간단한 커맨드로 해결이 가능한 경우를 알게된다. 

 

1. 터미널 환경으로 이동한다. 

2. flutter run 을 실행한다. 

 

그러면 문제없이 실행됨을 발견할 수 있다. Flutter 개발환경이 아직까지도 저런 버그가 있다는 것은

실망이긴 하지만 그래도 Flutter 개발환경에서 문제가 발생할 경우, 

1. flutter clean

2. flutter pub get

3. flutter run -> "타겟환경선택"

 

을 생활화하다보면 어느정도 개발환경의 버그는 해결된다. 

 

 

 

(*) 위와 같이 하더라도 F5를 누르면 동일한 에러가 발생하는 경우가 있다. 이럴 경우, 아래와 같이 main.dart를 선택한 후,  Start Debugging을 선택하면 에러없이 실행 가능하다.

 

Comments