mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
7 lines
243 B
Dart
7 lines
243 B
Dart
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
import 'package:nc_photos/widget/my_app.dart';
|
|
|
|
/// Simplify localized string access
|
|
class L10n {
|
|
static AppLocalizations global() => AppLocalizations.of(MyApp.globalContext)!;
|
|
}
|