flutter_form_wizard/lib/utils/providers.dart
Jacques Doeleman 9f49961548 Fixed some pull request comments
Removed referemces to next_shell and removed some references image picker and removed a useless file
2022-09-29 16:29:38 +02:00

7 lines
268 B
Dart

import 'package:flutter_form/utils/translation_service.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
/// Provides the [ShellTranslationService]
final translationServiceProvider =
Provider<TranslationService>((ref) => ShellTranslationService());