fl_country_code_picker 0.0.3  fl_country_code_picker: ^0.0.3 copied to clipboard
fl_country_code_picker: ^0.0.3 copied to clipboard
A Flutter package for showing a modal that contains country dial code. The user can also search for the available codes and select right from the modal.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'demo/demo.dart';
void main() {
  runApp(const MyApp());
}
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const DemoPage(),
    );
  }
}