region_settings 1.2.1
region_settings: ^1.2.1 copied to clipboard
A Flutter plugin to get device region settings such as measurement system, temperature units, and date/number formats.
/*
*******************************************************************************
Package: region_settings_example
Class: main.dart
Author: Nathan Cosgray | https://www.nathanatos.com
-------------------------------------------------------------------------------
Copyright (c) 2024 Nathan Cosgray. All rights reserved.
This source code is licensed under the BSD-style license found in LICENSE.
*******************************************************************************
*/
import 'package:flutter/material.dart';
import 'package:intl/date_symbol_data_local.dart';
import 'package:intl/find_locale.dart';
import 'package:intl/intl.dart';
import 'dart:async';
import 'package:region_settings/region_settings.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
TemperatureUnit? _temperatureUnits;
bool? _usesMetricSystem;
int? _firstDayOfWeek;
String? _dateFormatShort;
String? _dateFormatMedium;
String? _dateFormatLong;
String? _numberFormatInteger;
String? _numberFormatDecimal;
@override
void initState() {
super.initState();
loadRegionSettings();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> loadRegionSettings() async {
final RegionSettings regionSettings = await RegionSettings.getSettings();
TemperatureUnit temperatureUnits = regionSettings.temperatureUnits;
bool usesMetricSystem = regionSettings.usesMetricSystem;
int firstDayOfWeek = regionSettings.firstDayOfWeek;
String dateFormatShort = regionSettings.dateFormat.short;
String dateFormatMedium = regionSettings.dateFormat.medium;
String dateFormatLong = regionSettings.dateFormat.long;
String numberFormatInteger = regionSettings.numberFormat.integer;
String numberFormatDecimal = regionSettings.numberFormat.decimal;
// Get default locale for DateFormat
await initializeDateFormatting();
Intl.defaultLocale = await findSystemLocale();
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_temperatureUnits = temperatureUnits;
_usesMetricSystem = usesMetricSystem;
_firstDayOfWeek = firstDayOfWeek;
_dateFormatShort = dateFormatShort;
_dateFormatMedium = dateFormatMedium;
_dateFormatLong = dateFormatLong;
_numberFormatInteger = numberFormatInteger;
_numberFormatDecimal = numberFormatDecimal;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('RegionSettings example app'),
),
body: SingleChildScrollView(
child: Column(
children: [
Padding(
padding: const EdgeInsets.all(10.0),
child: GridView.count(
physics: const ScrollPhysics(),
crossAxisCount: 2,
childAspectRatio: 4.0,
shrinkWrap: true,
children: [
const Text('temperatureUnits:'),
Text(
'$_temperatureUnits',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('usesMetricSystem:'),
Text(
'$_usesMetricSystem',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('firstDayOfWeek:'),
Text(
'$_firstDayOfWeek',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('firstDayOfWeek is Monday:'),
Text(
'${_firstDayOfWeek == DateTime.monday}',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('dateFormat.short:'),
Text(
'$_dateFormatShort',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('Today as dateFormat.short:'),
Text(
DateFormat(_dateFormatShort).format(DateTime.now()),
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('dateFormat.medium:'),
Text(
'$_dateFormatMedium',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('Today as dateFormat.medium:'),
Text(
DateFormat(_dateFormatMedium).format(DateTime.now()),
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('dateFormat.long:'),
Text(
'$_dateFormatLong',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('Today as dateFormat.long:'),
Text(
DateFormat(_dateFormatLong).format(DateTime.now()),
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('numberFormat.integer:'),
Text(
'$_numberFormatInteger',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('Sample integer:'),
Text(
_formatNumberWithPattern(
1234567,
_numberFormatInteger,
),
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('numberFormat.decimal:'),
Text(
'$_numberFormatDecimal',
style: const TextStyle(fontWeight: FontWeight.bold),
),
const Text('Sample decimal:'),
Text(
_formatNumberWithPattern(
1234567.89,
_numberFormatDecimal,
asDecimal: true,
),
style: const TextStyle(fontWeight: FontWeight.bold),
),
],
),
),
FilledButton.tonal(
onPressed: () => loadRegionSettings(),
child: const Text('Reload Values'),
)
],
),
),
),
);
}
// Convert number to string using a format pattern
String _formatNumberWithPattern(double number, String? pattern,
{bool asDecimal = false}) {
// Handle blank patterns
if (pattern == null) {
return number.toString();
}
// Convert the number to a string with expected precision and no decimal point
String numberStr =
number.toStringAsFixed(asDecimal ? 2 : 0).replaceAll('.', '');
// Throw error if pattern is too short
assert(numberStr.length <= '#'.allMatches(pattern).length);
// Iterate over the pattern and build formatted string
String result = '';
int numberIndex = numberStr.length - 1;
for (int patternIndex = pattern.length - 1;
patternIndex >= 0 && numberIndex >= 0;
patternIndex--) {
if (pattern[patternIndex] == '#') {
// Replace placeholder with digit
result = '${numberStr[numberIndex]}$result';
numberIndex--;
} else {
// Append non-numeric character unchanged
result = '${pattern[patternIndex]}$result';
}
}
return result;
}
}