- 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
10 lines
308 B
Dart
10 lines
308 B
Dart
import 'package:umbrix/features/settings/data/settings_repository.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'settings_data_providers.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
SettingsRepository settingsRepository(SettingsRepositoryRef ref) {
|
|
return SettingsRepositoryImpl();
|
|
}
|