flutter_country_picker_plus 0.0.6 copy "flutter_country_picker_plus: ^0.0.6" to clipboard
flutter_country_picker_plus: ^0.0.6 copied to clipboard

A Flutter plugin that provides a country picker widget.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running on: '),
        ),
      ),
    );
  }
}
1
likes
140
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that provides a country picker widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

diacritic, flutter, flutter_web_plugins

More

Packages that depend on flutter_country_picker_plus