반응형
React Native에서는 파일명을 mainPage와 같은 식으로 짓다가 똑같이 flutter에서 했는데 Name source files using `lowercase_with_underscores`.의 경고가 나왔다. 실행이 되지 않는 오류는 아니지만 해결방법을 찾아보니 2가지가 나왔다.
1. ignore: file_names
파일의 첫줄에 다음과 같은 줄을 추가하면 파일 이름을 무시하게 되고 경고가 사라진다
// ignore: file_names
2. 파일이름 수정
플러터에서는 react와 다르게 lowercase with under를 추천한다. 따라서 mainPage가 아니라 소문자로 하고 사이에 언더바를 넣은 main_page.dart 로 파일이름을 바꾸면 경고가 없어진다.
반응형
'Mobile APP > Flutter' 카테고리의 다른 글
[Flutter] DropdownButton A value of type 'Object?' can't be assigned to a variable of type 'String'. 오류 (0) | 2022.01.05 |
---|---|
[Flutter] Bottom Navigation Bar Item label 없애기 (0) | 2022.01.04 |
[Flutter] Container 배경 이미지 넣기 (0) | 2022.01.03 |
[Flutter] Error: ADB exited with exit code 1 Performing Streamed Install (0) | 2022.01.02 |
[Flutter] flutter 프로젝트 android simulator로 실행하기 (0) | 2022.01.01 |
댓글