lang_env 1.0.0
lang_env: ^1.0.0 copied to clipboard
A Flutter utility package for retrieving device and application locale information using official Flutter APIs.
import 'package:lang_env/lang_env.dart';
void main() {
var languageCode = LangEnv.deviceLanguageCode;
var countryCode = LangEnv.deviceCountryCode;
LangEnv.setOnLocaleChanged(() {
var languageCode = LangEnv.deviceLanguageCode;
var countryCode = LangEnv.deviceCountryCode;
});
print('languageCode: $languageCode, countryCode: $countryCode');
}