awesome_datepicker 0.1.0 copy "awesome_datepicker: ^0.1.0" to clipboard
awesome_datepicker: ^0.1.0 copied to clipboard

A sleek widget that lets your users input dates using a color picker!

awesome_datepicker #

Select dates by picking colors

a screenshot of the AwesomeDatePicker widget against a black background

Features #

This package can:

  1. Display a color picker that outputs dates
  2. That's it

Usage #

You can use the async function showAwesomeDatePicker to trigger the picker dialog:

var selectedDate = DateTime.now();

await showAwesomeDatePicker(
  context: context,
  mode: AwesomeDatePickerMode.hex,
  useAlpha: true,
  initialDate: DateTime.now(),
  onChanged: (date) {
    if (kDebugMode) print('changed to $date');
    selectedDate = date;
  },
);

Alternatively, you can directly use the AwesomeDatePicker widget in your form or dialog:

// ...
  child: AwesomeDatePicker(
    initialDate: DateTime.now(),
    mode: AwesomeDatePickerMode.hex,
    colorPickerHeight: 250,
    hueRingStrokeWidth: 20,
    onDateChanged: (date) {
      if (kDebugMode) print('changed to $date');
      selectedDate = date;
    },
  ),
// ...

For a more detailed example, explore the sample app. To test the limits of customization, check dialog.dart.

Additional Information #

  1. This is bad UI. It's not intended for use.
  2. There's a lot of stuff that can be added. I've left some TODOs for myself. I may or may not come around to them at an unknown time in the future.
  3. You can report bugs... but I ain't resolvin' none of 'em

License #

Copyright (C) 2023 Aditya Rajput & other contributors

This software is licensed under the Affero GPL v3. You should have received a copy of the Affero GPL v3 along with this program. If not, you can visit the original here.

0
likes
140
pub points
0%
popularity

Publisher

verified publisheradityarajput.co

A sleek widget that lets your users input dates using a color picker!

Homepage

Documentation

API reference

License

AGPL-3.0 (license)

Dependencies

flutter, fluttertoast, intl

More

Packages that depend on awesome_datepicker