- Changed window size to mobile phone format (400x800) - Removed width condition for ActiveProxyFooter - now always visible - Added run-umbrix.sh launch script with icon copying - Stats cards now display on all screen sizes
8 lines
252 B
Dart
8 lines
252 B
Dart
import 'package:umbrix/core/database/app_database.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'database_provider.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
AppDatabase appDatabase(AppDatabaseRef ref) => AppDatabase.connect();
|