country_flags_pro 0.0.9
country_flags_pro: ^0.0.9 copied to clipboard
A Flutter package by Sanjarbek Fayzullayev for building efficient, scalable, and user-friendly mobile applications with clean architecture and best practices.
example/main.dart
import 'package:flutter/material.dart';
import 'package:country_flags_pro/country_flags_pro.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Country Flags Pro Example')),
body: Center(
child: CountryFlagsPro.getFlag('us', width: 100, height: 100),
),
),
);
}
}
copied to clipboard