mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-04-06 14:23:49 -04:00
fix error zone
This commit is contained in:
parent
fc32fdd9f3
commit
0ebca108fe
@ -27,28 +27,29 @@ void main() async {
|
||||
// Ansi colors
|
||||
ansiColorDisabled = false;
|
||||
|
||||
// Logs
|
||||
initLoggy();
|
||||
// Catch errors
|
||||
await runZonedGuarded(() async {
|
||||
// Logs
|
||||
initLoggy();
|
||||
|
||||
// Prepare theme
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
final themeService = await ThemeService.instance;
|
||||
final initTheme = themeService.initial;
|
||||
// Prepare theme
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
final themeService = await ThemeService.instance;
|
||||
final initTheme = themeService.initial;
|
||||
|
||||
// Manage window on desktop platforms
|
||||
await WindowControl.initialize();
|
||||
// Manage window on desktop platforms
|
||||
await WindowControl.initialize();
|
||||
|
||||
// Make localization delegate
|
||||
final delegate = await LocalizationDelegate.create(
|
||||
fallbackLocale: 'en_US', supportedLocales: ['en_US']);
|
||||
await initializeDateFormatting();
|
||||
// Make localization delegate
|
||||
final delegate = await LocalizationDelegate.create(
|
||||
fallbackLocale: 'en_US', supportedLocales: ['en_US']);
|
||||
await initializeDateFormatting();
|
||||
|
||||
// Start up Veilid and Veilid processor in the background
|
||||
unawaited(initializeVeilid());
|
||||
// Start up Veilid and Veilid processor in the background
|
||||
unawaited(initializeVeilid());
|
||||
|
||||
// Run the app
|
||||
// Hot reloads will only restart this part, not Veilid
|
||||
runZonedGuarded(() {
|
||||
// Run the app
|
||||
// Hot reloads will only restart this part, not Veilid
|
||||
runApp(ProviderScope(
|
||||
observers: const [StateLogger()],
|
||||
child: LocalizedApp(delegate, VeilidChatApp(theme: initTheme))));
|
||||
|
Loading…
x
Reference in New Issue
Block a user