default_country_code 0.0.1 copy "default_country_code: ^0.0.1" to clipboard
default_country_code: ^0.0.1 copied to clipboard

This plugin provides the ISO country code name from SIM, Network and the system locale.

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:default_country_code/default_country_code.dart';

void main() {
  runApp(MyApp());
}

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

class _MyAppState extends State<MyApp> {
  String _simCountry = 'Unknown';
  String _networkCountry = 'Unknown';
  String _localeCountry = 'Unknown';

  @override
  void initState() {
    super.initState();
    getSimCountryCode();
    getNetworkCountryCode();
    getLocaleCountryCode();
  }

  Future<void> getSimCountryCode() async {
    String country;
    try {
      country =
          await DefaultCountryCode.detectSIMCountry ?? 'Unknown Country code';
    } on PlatformException {
      country = 'Failed to get country code.';
    }
    if (!mounted) return;
    setState(() {
      _simCountry = country;
    });
  }

  Future<void> getNetworkCountryCode() async {
    String country;
    try {
      country =
          await DefaultCountryCode.detectNetworkCountry ?? 'Unknown Country code';
    } on PlatformException {
      country = 'Failed to get country code.';
    }

    if (!mounted) return;

    setState(() {
      _networkCountry = country;
    });
  }


  Future<void> getLocaleCountryCode() async {
    String country;
    try {
      country =
          await DefaultCountryCode.detectLocaleCountry ?? 'Unknown Country code';
    } on PlatformException {
      country = 'Failed to get country code.';
    }

    if (!mounted) return;
    setState(() {
      _localeCountry = country;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Country code plugin'),
        ),
        body: Padding(
          padding: const EdgeInsets.all(16.0),
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.stretch,
            mainAxisSize: MainAxisSize.min,
            children: [
              Text('Country code name', style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18),),
              SizedBox(height: 20,),
              Text('SIM: $_simCountry\n\nNetwork: $_networkCountry\n\nLocale: $_localeCountry\n'),
            ],
          ),
        ),
      ),
    );
  }
}
7
likes
120
pub points
76%
popularity

Publisher

unverified uploader

This plugin provides the ISO country code name from SIM, Network and the system locale.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on default_country_code