Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- django
- DART
- codingtest
- Vue
- 동적계획법과최단거리역추적
- 동적계획법
- cos pro 1급
- 안드로이드
- cos pro
- AndroidStudio
- cos
- 개발
- 코드품앗이
- Python
- 알고리즘
- C++
- 안드로이드스튜디오
- 파이썬
- 코테
- DFS와BFS
- Flutter
- 백준
- DFS
- Algorithm
- 분할정복
- BAEKJOON
- issue
- vuejs
- android
- 코딩테스트
Archives
- Today
- Total
목록flutter2.0 (1)
Development Artist
[Flutter, Issue] Error: Field should be initialized because its type 'String' doesn't allow null.
이슈 로그인 페이지를 개발하는데, 해당 String 변수는 null을 허용하지 않는다. 라는 이슈가 발생. 해결 1. null-safety를 적용, ?를 넣어줌으로써 해결. 2. 탐색기에서는 late String _password; 로 해결하고 있는데, late는 변수를 초기화히 선언만하고 초기화는 지금이 아닌 나중에 초기화하고 싶을 때 사용하는 것으로 참고 하면 좋을 것 같다. 원인 1. Flutter 2.0 이후로 null-safety 가 적용되었기 때문이다. 이슈의 원인은 2.0 이전의 코드를 그대로 차용하면서 생긴 문제였다. 'flutter null-safety'로 구글링 해보면 자세한 사항을 확인 할 수 있다.
TroubleShooting/Flutter Issue
2022. 1. 5. 19:58