Files
umbrix/lib/core/core_providers.dart
problematicconsumer 98283213b6 Fix code gen bug
2023-07-18 12:57:31 +03:30

7 lines
235 B
Dart

import 'package:hiddify/core/locale/locale.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
final translationsProvider = Provider<TranslationsEn>(
(ref) => ref.watch(localeControllerProvider).translations(),
);