timezone_to_country 2.1.0 copy "timezone_to_country: ^2.1.0" to clipboard
timezone_to_country: ^2.1.0 copied to clipboard

Extension method for translation Time Zone Id to ISO 3166-1 alpha-2 code (e.g. 'Asia/Seoul' to 'KR')

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:timezone_to_country/timezone_to_country.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _countryCode = 'Unknown';

  @override
  void initState() {
    super.initState();
    _initData();
  }

  Future<void> _initData() async {
    try {
      _countryCode = await TimeZoneToCountry.getLocalCountryCode();
    } catch (e) {
      print('Could not get the local country code');
    }
    if (mounted) {
      setState(() {});
    }
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('Local country code app'),
          ),
          body: Center(
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: <Widget>[
                Text(
                  'Local country code: ${convertToEmoji(_countryCode)}',
                  style: Theme.of(context).textTheme.headlineSmall,
                ),
              ],
            ),
          )),
    );
  }

  static String convertToEmoji(String countryCode) {
    String flag = countryCode.replaceAllMapped(RegExp(r'[A-Z]'),
        (match) => String.fromCharCode(match.group(0)!.codeUnitAt(0) + 127397));
    return flag;
  }
}
9
likes
140
pub points
92%
popularity

Publisher

unverified uploader

Extension method for translation Time Zone Id to ISO 3166-1 alpha-2 code (e.g. 'Asia/Seoul' to 'KR')

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_timezone, timezone

More

Packages that depend on timezone_to_country