2026-01-17 13:09:20 +03:00
|
|
|
import 'package:umbrix/core/localization/locale_preferences.dart';
|
|
|
|
|
import 'package:umbrix/gen/translations.g.dart';
|
2023-12-01 12:56:24 +03:30
|
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
|
|
2026-01-17 13:09:20 +03:00
|
|
|
export 'package:umbrix/gen/translations.g.dart';
|
2023-12-01 12:56:24 +03:30
|
|
|
|
|
|
|
|
part 'translations.g.dart';
|
|
|
|
|
|
|
|
|
|
@Riverpod(keepAlive: true)
|
|
|
|
|
TranslationsEn translations(TranslationsRef ref) =>
|
|
|
|
|
ref.watch(localePreferencesProvider).build();
|