best_naveen_localization 1.0.6 copy "best_naveen_localization: ^1.0.6" to clipboard
best_naveen_localization: ^1.0.6 copied to clipboard

A cool localization package for every developer. In this package you can use many common words directly ...it will save your time and fast development ..

example/lib/main.dart

import 'package:best_naveen_localization/best_naveen_localization.dart';


void main() {
  /// if you want to use commonwords tranlation then directly use ..many more words you can search
  CommonTranslations.back;
  CommonTranslations.cancel;
  CommonTranslations.confirm;
  CommonTranslations.contactUs;
  CommonTranslations.yes;
  CommonTranslations.newMessages;
  CommonTranslations.next;
  CommonTranslations.changePassword;
  CommonTranslations.areYouSure;
  CommonTranslations.contact;
  CommonTranslations.location;

  /// or you can create your translation like this

  final Map<String, Map<String, String>> translations = {
    'en': {'explore': 'Explore', 'profile': 'Profile', 'name': 'Name'},
    'fi': {'explore': 'Selaa', 'profile': 'Profiili', 'name': 'Nimi'},
    'ar': {'explore': 'استكشاف', 'profile': 'الملف الشخصي', 'name': 'اسم'}
  };

  /// if you want to set manually then assign language code like this
  GetLocale.langcode='en';


  GetTranslate.translations = translations;

  String profile = GetTranslate.getTranslation('profile');
  String explore = GetTranslate.getTranslation('explore');
  String name = GetTranslate.getTranslation('name');

  print(profile);
  print(explore);
  print(name);
}
40
likes
150
points
73
downloads

Publisher

unverified uploader

Weekly Downloads

A cool localization package for every developer. In this package you can use many common words directly ...it will save your time and fast development ..

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on best_naveen_localization