flutter_form_wizard/lib/utils/providers.dart

7 lines
268 B
Dart
Raw Normal View History

import 'package:flutter_form/utils/translation_service.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
2022-09-20 11:58:06 +02:00
/// Provides the [ShellTranslationService]
final translationServiceProvider =
Provider<TranslationService>((ref) => ShellTranslationService());