best_naveen_localization 0.0.4 best_naveen_localization: ^0.0.4 copied to clipboard
A cool localization package for every developer.
import 'package:best_naveen_localization/best_naveen_localization.dart';
void main() {
// if you want to use commonwords tranlation then directly use
CommonTranslations.back;
CommonTranslations.cancel;
CommonTranslations.confirm;
CommonTranslations.contactUs;
CommonTranslations.yes;
CommonTranslations.newMessages;
CommonTranslations.next;
CommonTranslations.changePassword;
//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': 'اسم'}
};
GetTranslate.translations = translations;
String profile = GetTranslate.getTranslation('profile');
String explore = GetTranslate.getTranslation('explore');
String name = GetTranslate.getTranslation('name');
print(profile);
print(explore);
print(name);
}