일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- recyclerview
- Coroutine
- 공부집중
- 장자명언
- Flutter
- 1인개발자
- 공자명언
- 코틀린
- 벤자민플랭클린
- jetpack compose
- bash
- 좋은글필사하기
- Android
- DART
- Linux
- 명심보감
- kotlin
- Firebase
- androidx
- 파이썬
- Freesound
- 오픈소스
- 명언모음
- ASMR
- Streaming
- 넷플릭스
- 이모지
- 소울칼리버6
- FSM
- 이모지메모
Archives
- Today
- Total
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을 선택하면 에러없이 실행 가능하다.
'Source code or Tip > Flutter & Dart' 카테고리의 다른 글
[Dart] 입력값 Validate를 위한 예제 (1) | 2024.04.20 |
---|---|
[Flutter] dart로 opml 파싱 (1) | 2023.10.31 |
chatGPT의 Open API를 이용한 플러그인 (0) | 2023.03.19 |
Flutter Timer로 스프레쉬 화면에서 메인으로 이동 - pushReplacement (0) | 2023.03.09 |
[Flutter] Game engine- Flame 링크 (0) | 2023.03.04 |
Comments