mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
8 lines
245 B
Dart
8 lines
245 B
Dart
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
|
|
/// Simplify localized string access
|
|
class L10n {
|
|
static AppLocalizations of(BuildContext context) =>
|
|
AppLocalizations.of(context)!;
|
|
}
|