omni_date_picker 1.0.5
omni_date_picker: ^1.0.5 copied to clipboard
An omni-functional date and time picker for Flutter, offering various modes like date, time, and range filtering with extensive customization.
import 'package:example/home_page.dart';
import 'package:flutter/material.dart';
void main() async {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Date Picker Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
routes: {
'/': (context) => HomePage(),
},
initialRoute: '/',
);
}
}