mm_nrc_kit 0.0.3
mm_nrc_kit: ^0.0.3 copied to clipboard
Myanmar NRC UI Kit
import 'package:flutter/material.dart';
import 'package:mm_nrc_kit/mm_nrc_kit.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'MM NRC Kit',
debugShowCheckedModeBanner: false,
theme: ThemeData(
appBarTheme: const AppBarTheme(backgroundColor: Colors.white),
scaffoldBackgroundColor: const Color(0xffEFEEF2),
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'MM NRC Kit'),
);
}
}
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) {
FocusScopeNode currentFocus = FocusScope.of(context);
return GestureDetector(
onTap: () {
if (!currentFocus.hasPrimaryFocus) {
currentFocus.focusedChild?.unfocus();
}
},
child: Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: NRCField(
nrcValue: "8/MaKaNa(N)000000",
height: 50,
isExpand: false,
backgroundColor: Colors.white,
borderColor: Colors.grey,
borderWidth: 0.4,
borderRadius: 10,
pickerColor: const Color(0xffeeeeee),
pickerItemColor: Colors.black,
onCompleted: (value) {
debugPrint("onCompleted : $value");
},
onChanged: (value) {
debugPrint("onChanged : $value");
},
),
),
),
);
}
}