- Upgrade flutter_riverpod to 3.1.0, riverpod_annotation to 4.0.0 - Upgrade freezed to 3.2.3, freezed_annotation to 3.1.0 - Migrate freezed classes to use sealed keyword (freezed 3.x) - Update provider naming (*NotifierProvider → *Provider) - Add legacy.dart import for StateNotifierProvider compatibility - Fix valueOrNull → value for AsyncValue - Remove unused imports and fields - Add sync from Authentik button to users/groups pages - Suppress invalid_annotation_target warning in analysis_options 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
954 B
Dart
34 lines
954 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import 'core/theme/app_theme.dart';
|
|
import 'core/theme/theme_provider.dart';
|
|
import 'routing/app_router.dart';
|
|
|
|
/// Root application widget.
|
|
class TatlockApp extends ConsumerWidget {
|
|
const TatlockApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final router = ref.watch(appRouterProvider);
|
|
final themeAsync = ref.watch(themeProvider);
|
|
|
|
// Get theme mode, defaulting to system while loading
|
|
final themeMode = switch (themeAsync) {
|
|
ThemeSetting.system => ThemeMode.system,
|
|
ThemeSetting.light => ThemeMode.light,
|
|
ThemeSetting.dark => ThemeMode.dark,
|
|
};
|
|
|
|
return MaterialApp.router(
|
|
title: 'Tatlock UI',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: AppTheme.light,
|
|
darkTheme: AppTheme.dark,
|
|
themeMode: themeMode,
|
|
routerConfig: router,
|
|
);
|
|
}
|
|
}
|