728x90
반응형
flutter 2.5 버전이 업데이트 되면서,
모든 정적 위젯에 const KEYWORD를 입력해야하는 방식으로 변경되었습니다.
무시하고 만들수도 있지만, idea에 에러표시가 된 상태로 만들기에는 조금은 신경쓰이게 됩니다.
따라서 아래의 내용을 추가 하면 const 에러 표시를 지울수 있습니다.
320x100
1. analysis_option.yaml file add the following:
-add 21.10.20
prefer_const_constructors: false
prefer_const_literals_to_create_immutables: false
prefer_const_constructors_in_immutables: false
2. terminal as below
dart fix
300x250
반응형
'Flutter' 카테고리의 다른 글
Android Studio에 github를 연결하자 (0) | 2021.10.31 |
---|---|
Flutter - Disable, Override Back Button widget WillPopScope (0) | 2021.10.10 |
[Flutter] Web " # " 을 지워봅시다. (0) | 2021.09.22 |
[App] Github Desktop with GitFox (0) | 2021.09.18 |
[Flutter - error] CocoaPods error (0) | 2021.09.07 |