Last updated:
0 purchases
native locale
native locale #
A flutter plugin for getting and changing the native platform locale.
About #
Since the flutter localization is completely separate from the localization of the native app, you can face problems of unmatched locales when opening another native view that should be localized.
This plugin helps you change the native localization of the app programmatically from the dart side.
Platform Support #
Android
iOS
✅
[ ]
Getting Started #
Add this to your package's pubspec.yaml file:
dependencies:
native_locale:
copied to clipboard
Now in your Dart code, you can use:
import 'package:native_locale/native_locale.dart';
copied to clipboard
Usage #
To get the locale of the platform simply run the following command:
await NativeLocale().getNativeLocale()
copied to clipboard
To set the locale of the platform run the following command:
await NativeLocale().setNativeLocale(const Locale('en'))
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.