@Preview(name: 'Disconnected Device Screen', size: Size(800, 500))
Widget disconnectedDeviceScreenPreview() {
return MaterialApp(
home: EasyLocalization(
supportedLocales: const [Locale('en', 'US'), Locale('ko', 'KR')],
path: 'assets/translations',
fallbackLocale: const Locale('ko', 'KR'),
child: const DisconnectedDeviceScreen(),
),
);
}
It shows that LateInitializationError ( _deviceLocale has nat been initilaized.)
Any updates for this ?