mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 13:36:50 +00:00
24 lines
530 B
Dart
24 lines
530 B
Dart
import "package:flutter_gen/gen_l10n/app_localizations.dart";
|
|
import "package:flutter_gen/gen_l10n/app_localizations_en.dart";
|
|
|
|
import "package:one_context/one_context.dart";
|
|
import "package:flutter/material.dart";
|
|
|
|
// Shortcut function to reduce boilerplate!
|
|
I18N L10()
|
|
{
|
|
if (OneContext.hasContext) {
|
|
BuildContext? _ctx = OneContext().context;
|
|
|
|
if (_ctx != null) {
|
|
I18N? i18n = I18N.of(_ctx);
|
|
|
|
if (i18n != null) {
|
|
return i18n;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Fallback for "null" context
|
|
return I18NEn();
|
|
} |