flutter_device_locale 0.2.0 flutter_device_locale: ^0.2.0 copied to clipboard
A Flutter plugin for retrieving the device locale information.
A Flutter plugin for retrieving the device locale information.
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
flutter_device_locale: ^0.2.0
Install packages from the command line (or from your editor):
flutter pub get
Import flutter_device_locale:
import 'package:flutter_device_locale/flutter_device_locale.dart';
Usage #
Retrieve the current locale:
var currentLocale = await FlutterDeviceLocale.getCurrentLocale();
Retrieve the preferred locales:
var preferredLocales = await FlutterDeviceLocale.getPreferredLocales();