mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
9 lines
245 B
Dart
9 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)!;
|
||
|
}
|