country_picker_bkb 1.0.4
country_picker_bkb: ^1.0.4 copied to clipboard
This Package is about providing the sipmple country, state, city, dial code picker and can be designed based on user's wish also.Read the Read me file for more info about the Project.we can get detail [...]
example/lib/main.dart
import 'package:example/home.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(
home: Home(),
);
}
}