mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
50 lines
1.3 KiB
Dart
50 lines
1.3 KiB
Dart
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
|
|
|
import 'app.dart';
|
|
import 'log/log.dart';
|
|
import 'providers/window_control.dart';
|
|
import 'tools/theme_service.dart';
|
|
import 'veilid_support/veilid_support.dart';
|
|
|
|
void main() async {
|
|
// Disable all debugprints in release mode
|
|
if (kReleaseMode) {
|
|
debugPrint = (message, {wrapWidth}) {};
|
|
}
|
|
|
|
// Print our PID for debugging
|
|
if (!kIsWeb) {
|
|
debugPrint('VeilidChat PID: $pid');
|
|
}
|
|
|
|
// Logs
|
|
initLoggy();
|
|
|
|
// Prepare theme
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
final themeService = await ThemeService.instance;
|
|
final initTheme = themeService.initial;
|
|
|
|
// Manage window on desktop platforms
|
|
await WindowControl.initialize();
|
|
|
|
// Make localization delegate
|
|
final delegate = await LocalizationDelegate.create(
|
|
fallbackLocale: 'en_US', supportedLocales: ['en_US']);
|
|
|
|
// Start up Veilid and Veilid processor in the background
|
|
unawaited(initializeVeilid());
|
|
|
|
// Run the app
|
|
// Hot reloads will only restart this part, not Veilid
|
|
runApp(ProviderScope(
|
|
observers: const [StateLogger()],
|
|
child: LocalizedApp(delegate, VeilidChatApp(theme: initTheme))));
|
|
}
|