A value of type 'Null' can't be assigned to parameter of type 'double' in a const constructor
에러 원인
const
로 지정된 위젯에null
이 될 수 있는 값을 넣어서 그렇다.const
에는 정해진 상수만 넣어야 한다.
에러 해결
- 위젯 앞의
const
를 지우면 된다.
padding: const EdgeInsets.only(left: 8, right: 8, top: 8, bottom: bottomInset),
padding: EdgeInsets.only(left: 8, right: 8, top: 8, bottom: bottomInset),
반응형
'플러터' 카테고리의 다른 글
플러터(Flutter) 의 WidgetsFlutterBinding.ensureInitializing() 이란? (0) | 2023.12.02 |
---|---|
안드로이드 스튜디오 에뮬레이터 인식 안됨 (Device emulator-5554 is offline) 문제 해결 (0) | 2023.12.02 |
플러터(Flutter) 의 MediaQuery 클래스란? (0) | 2023.11.30 |
플러터(Flutter) proxy_box.dart Failed assertions: 'hasSize': is not true. 에러 해결하기 (0) | 2023.11.30 |
플러터(Flutter) 의 IntrinsicHeight 와 IntrinsicWidth 위젯이란? (1) | 2023.11.28 |