kd_utils 0.1.0+4
kd_utils: ^0.1.0+4 copied to clipboard
This package is for utils and custom widgets so any one can use and make there app as hi/she like
example/lib/main.dart
import 'package:example/ui/date_picker/date_picker_exmp.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: DatePickerDemo(),
);
}
}