IT

flutter 에러 해결

고양이호랑이 2022. 6. 28. 17:07

https://youtu.be/7E8l9ggxz-Q

 

강좌 따라하다가

 

패키지 적용하는 부분에서

Error: safety, because the following dependencies don't support null safety:

에러가 생겼는데 해결은 터미널에 

flutter run --no-sound-null-safety

입력해주니까 되었음

 

 

참고:

https://bacha.tistory.com/48

 

flutter - Toast Message

[Toast Message] -> 토스트 메시지는 따로 외부 메서드를 import 하는 과정을 거쳐야 한다. -> pubspec 파일에서 -> 해당 위치에 fluttertoast: ^3.1.3 을 붙여넣는다. -> pubspec 파일은 들여쓰기에 상당히 예..

bacha.tistory.com

 

https://hanco.tistory.com/17

 

[플러터(Flutter)] - don't support null safety

플러터 공식문서를 보며 첫 Flutter 앱 작성하기를 따라 하던 중 패키지 적용하는 부분에서 don't support null safety: - package:english_words 가 나타났다. 아래의 두가지 방법 중 하나를 이용하여 해결할 수.

hanco.tistory.com

https://stackoverflow.com/questions/64917744/cannot-run-with-sound-null-safety-because-dependencies-dont-support-null-safety

 

Cannot run with sound null safety because dependencies don't support null safety

I have followed "Enabling null safety" on dart.dev and also migrated my whole Flutter application to null safety. Now, I am trying to run it using flutter run. However, it will not start

stackoverflow.com

 

'IT' 카테고리의 다른 글

jsonl 파일 읽기 (python)  (0) 2022.07.19
Flutter 강의 추천  (0) 2022.06.15
라즈베리파이4 google assistant api 에러  (0) 2022.04.17
graphviz 에러 해결  (0) 2022.04.14
PEP 8 (파이썬 개선 제안 #8)  (0) 2022.01.31