- 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
12 lines
388 B
Dart
12 lines
388 B
Dart
import 'package:umbrix/core/localization/locale_preferences.dart';
|
|
import 'package:umbrix/gen/translations.g.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
export 'package:umbrix/gen/translations.g.dart';
|
|
|
|
part 'translations.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
TranslationsEn translations(TranslationsRef ref) =>
|
|
ref.watch(localePreferencesProvider).build();
|