# ProxyProvider void main() async { WidgetsFlutterBinding.ensureInitialized(); await EasyLocalization.ensureInitialized(); return runApp( MultiProvider( providers: [ Provider( create: (BuildContext context) => SettingStore()), ProxyProvider( update: (context, settingStore, timerStore) => TimerStore(settingStore), ), ], child: EasyLocalization( supportedLocales: [Locale('en', 'US'), Locale('ko', 'KR')], path: 'assets/translations', fallbackLocale: Locale('en', 'US'), child: MyApp(), ), ), ); }