Dev Diary

flutter locale data has not been initialized 본문

Trouble Shooting

flutter locale data has not been initialized

sik9252 2024. 3. 11. 18:00
SMALL

table calendar 패키지를 이용해서 bottom sheet에 캘린더를 넣은 뒤 기간 필터링 ui에서 직접설정 옵션을 선택하면 달력이 아래서 위로 올라오는 화면을 구현하려고 TableCalendar 관련 코드를 모두 작성하고 실행해보았더니 "flutter locale data has not been initialized"라는 오류가 발생했다.

intl 패키지를 통해 main.dart에서 로컬 설정을 초기화해주었더니 에러가 사라졌다.

void main() async {
  await initializeDateFormatting(); // 이 부분을 추가

  // 다른 코드들 ...

  runApp(const ProviderScope(child: MyApp()));
}
LIST