mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 10:53:49 +02:00
11 lines
360 B
Dart
11 lines
360 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
import 'package:flutter_form_wizard/utils/translation_service.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
/// Provides the [ShellTranslationService]
|
|
final translationServiceProvider =
|
|
Provider<TranslationService>((ref) => ShellTranslationService());
|