You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
329 B
Dart
11 lines
329 B
Dart
|
2 years ago
|
import 'package:flutter/cupertino.dart';
|
||
|
|
import 'package:localization/localization.dart';
|
||
|
|
|
||
|
|
import '../models/enums/translation_keys.dart';
|
||
|
|
|
||
|
|
extension BuildContextExtension on BuildContext {
|
||
|
|
String translate(TranslationKeys translationKey) {
|
||
|
|
return translationKey.name.i18n([Localizations.localeOf(this).toString()]);
|
||
|
|
}
|
||
|
|
}
|