country_selector_widget 0.0.1 country_selector_widget: ^0.0.1 copied to clipboard
This Country Selector UI Library written by Dart and Fluter and supports three locales with country's name, achieves lazy loading, and country card animation on listview. This UI Library provides Coun [...]
import 'app.dart';
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
title: 'Country Selector Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const App(title: 'Country Selector Demo Page'),
),
);
}