mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Wrap main in runZonedGuarded and install FlutterError.onError / PlatformDispatcher.onError so background async failures get logged instead of dying silently. Guard PrefUtil.init so a SharedPreferences platform error no longer aborts startup. Recognize TypeError and FormatException in dioErrorToUserMessage to give a clearer message when the backend returns an unexpected JSON shape or bad timestamp. Wrap Settings._save in try/catch so prefs write failures show a snackbar instead of leaving the Save button silently dead. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
80 lines
2.0 KiB
Dart
80 lines
2.0 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:frontend/theme/catppuccin_mocha_theme.dart';
|
|
import 'package:frontend/utils/pref_utils.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'navigation.dart';
|
|
import 'theme/gruvbox_theme.dart';
|
|
|
|
void main() {
|
|
runZonedGuarded(
|
|
() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
FlutterError.onError = (details) {
|
|
FlutterError.presentError(details);
|
|
debugPrint('FlutterError: ${details.exceptionAsString()}');
|
|
};
|
|
PlatformDispatcher.instance.onError = (error, stack) {
|
|
debugPrint('Uncaught platform error: $error\n$stack');
|
|
return true;
|
|
};
|
|
|
|
try {
|
|
await PrefUtil.init();
|
|
} catch (e, stack) {
|
|
debugPrint('PrefUtil.init failed, continuing with defaults: $e\n$stack');
|
|
}
|
|
|
|
runApp(const MainApp());
|
|
},
|
|
(error, stack) {
|
|
debugPrint('Uncaught zone error: $error\n$stack');
|
|
},
|
|
);
|
|
}
|
|
|
|
final class MainApp extends StatelessWidget {
|
|
const MainApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ChangeNotifierProvider(
|
|
create: (context) => AppState(),
|
|
child: Consumer<AppState>(
|
|
builder: (context, appState, _) => MaterialApp.router(
|
|
title: 'OOTT',
|
|
theme: appState.theme,
|
|
routerConfig: router,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
final _themes = {
|
|
'catppuccin_mocha': catppuccinMochaDarkTheme,
|
|
'gruvbox_dark': gruvboxDarkTheme,
|
|
};
|
|
|
|
class AppState extends ChangeNotifier {
|
|
AppState() {
|
|
final saved = PrefUtil.getValue('theme', 'catppuccin_mocha') as String;
|
|
_themeKey = _themes.containsKey(saved) ? saved : 'catppuccin_mocha';
|
|
}
|
|
|
|
late String _themeKey;
|
|
String get themeKey => _themeKey;
|
|
ThemeData get theme => _themes[_themeKey]!;
|
|
|
|
Future<bool> setTheme(String key) async {
|
|
if (!_themes.containsKey(key)) return false;
|
|
if (key == _themeKey) return true;
|
|
_themeKey = key;
|
|
notifyListeners();
|
|
return PrefUtil.setValue('theme', key);
|
|
}
|
|
}
|