omni_date_picker 1.0.5 copy "omni_date_picker: ^1.0.5" to clipboard
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.

example/lib/main.dart

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: '/',
    );
  }
}
0
likes
155
points
10
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

An omni-functional date and time picker for Flutter, offering various modes like date, time, and range filtering with extensive customization.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on omni_date_picker