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

CCP Dialog package for showing a country code, flag , currency and currencyISO.

example/lib/main.dart

import 'package:ccp_dialog/country_picker/flutter_country_picker.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Country Piker Dialog'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'Select Country',
            ),
            Container(
                height: 45,
                width: MediaQuery.of(context).size.width,
                decoration: BoxDecoration(
                    borderRadius: BorderRadius.circular(30),
                    color: Colors.white),
                child: Row(
                  mainAxisAlignment: MainAxisAlignment.center,
                    children: [
                  CountryPicker(
                      selectedCountry: Country.IN,
                      dense: false,
                      showFlag: true,
                      //displays flag, true by default
                      showDialingCode: true,
                      //displays dialing code, false by default
                      showName: false,
                      //displays country name, true by default
                      showCurrency: false,
                      //eg. 'British pound'
                      showCurrencyISO: false,
                      onChanged: (value) {
                        ScaffoldMessenger.of(context).showSnackBar(
                            SnackBar(
                              content:Text(value.dialingCode),
                              duration: const Duration(seconds: 2),
                            ));
                      }),
                ]))
          ],
        ),
      ),
    );
  }
}
22
likes
0
pub points
61%
popularity

Publisher

unverified uploader

CCP Dialog package for showing a country code, flag , currency and currencyISO.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on ccp_dialog