day_night_time_picker icon indicating copy to clipboard operation
day_night_time_picker copied to clipboard

A day night time picker for Flutter. Beautiful day and night animation with Sun and Moon assets.

Results 14 day_night_time_picker issues
Sort by recently updated
recently updated
newest added

I want to make an appointment app. I want to disable time slots which are altready booked so user are unable to select it. For ex: if an appointment is...

question

Updated Version to 1.1.3 Updated Changelog

` TimeOfDay time = TimeOfDay.fromDateTime(_mondayStart); Navigator.of(context).push( showPicker( context: context, value: time, onChange: (_) {}, minuteInterval: MinuteInterval.FIFTEEN, onChangeDateTime: (DateTime dateTime) { setState(() { _mondayStart = dateTime; }); }, ), ); `...

Waiting for more info

For #74 added new option to size the wheel of the createInlinePicker option added to readme

enhancement

I'm facing an issues in fitting the inline widget using fittedBox, Flexible and Expanded. What should I do?

bug
Waiting for more info

If there isnt, WOuld you be interested in a pull request including it?

enhancement

![Screenshot 2024-03-17 232206](https://github.com/subhamayd2/day_night_time_picker/assets/113603055/7b228f6a-e3cd-4bbe-b7a2-9d940a833af3) I imported, but it's my issues

`showPicker` is too general, people finding this method in the code will be confused at first if they didn't know about this package. Every "show picker" method in Flutter has...

Hi, currently I´m using two pickers to set the start hour of an event and the end time. First I set the start time and then the end time (that...