Skip to content

Commit

Permalink
fix : lineLength
Browse files Browse the repository at this point in the history
  • Loading branch information
hndrr committed Apr 23, 2021
1 parent 0c0d9b8 commit e2d184d
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions lib/PickerLocalizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,11 @@ class PickerLocalizations extends PickerLocalizationsBase {
}

static PickerLocalizations of(BuildContext context) {
return Localizations.of<PickerLocalizations>(
context, PickerLocalizations) ??
_static;
return Localizations.of<PickerLocalizations>(context, PickerLocalizations) ?? _static;
}

/// Language Support
static const List<String> languages = [
'en',
'ja',
'zh',
'ko',
'it',
'ar',
'fr',
'es',
'tr'
];
static const List<String> languages = ['en', 'ja', 'zh', 'ko', 'it', 'ar', 'fr', 'es', 'tr'];

/// Language Values
static const Map<String, Map<String, Object>> localizedValues = {
Expand Down

0 comments on commit e2d184d

Please sign in to comment.