Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- animatorcontroller
- 노션활용
- flutter오류#flutter#flutter초기세팅
- 노션
- 커밋
- button
- 마이크작동안됨
- 블루투스마이크
- 깃허브 커밋
- 깃허브오류
- 노션으로 가계부쓰기
- props
- 노션관계형
- 유니티
- 마이크작동
- unity
- unrelated histories
- 깃허브
- 노션꿀팁
- button onclick
- RPG게임
- 깃허브 #깃명령어
- 갤럭지버즈+
- 1인 게임개발
- 노션가계부
- React
- notion
- JSX
- Relation
Archives
- Today
- Total
광산김가네
[Flutter] LateInitializationError: Field has not been initialized Error in Flutter 본문
TIL(Today I Learn)
[Flutter] LateInitializationError: Field has not been initialized Error in Flutter
어둠의 그림자 2022. 2. 23. 01:53어떠한 변수를 선언했는데, non-null value 선언해줘야한다~와 같은 에러가 떴다.
그래서 추천해주는 수정방법을 이용했는데 그게 변수 선언 앞머리에 late를 붙이는거였다.
late를 붙이니 에러가 해결되어 실행은되었지만 제목과 같은 에러가 떴다..
해결방법)
late 키워드를 빼고 nullable variable을 선언해주는 ? <- 이 물음표를 추가해주면된다!
//수정 전
late UserModel _user;
//수정 후
UserModel? _user;
'TIL(Today I Learn)' 카테고리의 다른 글
[TIL] 라이브러리 vs API (0) | 2022.04.22 |
---|---|
[기타] 윈도우11)갤럭시 버즈+ 마이크가 작동이안된다? (0) | 2022.04.19 |
[Flutter] Vertical viewport was given unbounded height / ListView 썼을때 오류 (0) | 2022.02.17 |
[Flutter] Device Manager 실행안됨 (0) | 2022.02.16 |
[Flutter]오류 해결방법 모음 (0) | 2022.01.20 |