[Flutter]상수 리스트 (const List) 선언 시 에러
static const List _widgetOptions = [ HomePage(), //여기 중요 Text( 'Index 1: Search', ), Text( 'Index 2: Account', ), ]; 이런식으로 _widgetOptions 리스트를 선언했더니 1. The values in a const list literal must be constants. Try removing the keyword 'const' from the list literal. - const 리스트 리터럴의 값은 상수여야합니다. 리스트 리터럴에서 키워드 'const'를 제거해보십시오. 2. The constructor being called isn't a const constructor. Try using 'new' ..
2020.10.02