iraqi_license_plate 0.1.1
iraqi_license_plate: ^0.1.1 copied to clipboard
Photoreal Iraqi vehicle registration plates for Flutter — car, motorcycle, European and legacy Arabic blanks — with the governorate and category data model behind them.
import 'package:flutter/material.dart';
import 'package:iraqi_license_plate/iraqi_license_plate.dart';
void main() => runApp(const ExampleApp());
class ExampleApp extends StatelessWidget {
const ExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Iraqi plates',
theme: ThemeData(colorSchemeSeed: const Color(0xFF7289DA)),
// The package ships a full explorer; this is the whole example app.
home: const PlateGalleryScreen(),
);
}
}