datepicker_dropdown 0.0.2+2 copy "datepicker_dropdown: ^0.0.2+2" to clipboard
datepicker_dropdown: ^0.0.2+2 copied to clipboard

outdated

A Dropdown Date picker for Flutter with customizable options.

example/lib/main.dart

// ignore_for_file: avoid_print

import 'package:datepicker_dropdown/dropdown_datepicker.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Dropdwon Date Picker'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
          child: DropdownDatePicker(
        isDropdownHideUnderline: true,
        startYear: 2000,
        endYear: 2020,
        width: 10,
        onChangedDay: (value) => print('onChangedDay: $value'),
        onChangedMonth: (value) => print('onChangedMonth: $value'),
        onChangedYear: (value) => print('onChangedYear: $value'),
      )),
    );
  }
}
43
likes
0
pub points
95%
popularity

Publisher

verified publisherrobertrobinson.in

A Dropdown Date picker for Flutter with customizable options.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on datepicker_dropdown