mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-09-18 11:33:16 +02: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)!;
|
|
}
|