macosui / macos_ui

Flutter widgets and themes implementing the current macOS design language.
https://macosui.github.io/macos_ui/#/
MIT License
1.87k stars 182 forks source link

add `initialDate` to `MacosDatePicker` #310

Closed Luckey-Elijah closed 1 year ago

Luckey-Elijah commented 2 years ago

Use case

I'd like to control the initial date set in MacosDatePicker widget.

Proposal

Create a parameter initialDate that sets _MacosDatePickerState._initialDate on init state. If the value of the parameter initialDate is null, then use DateTime.now().

Example of ideal usage:

MacosDatePicker(
  style: DatePickerStyle.textual,
  initialDate: DateTime(2022, 10, 10),
  onDateChanged: _onDateChanged,
)
Luckey-Elijah commented 2 years ago

Feel free to assign to me for a contribution :smile:

GroovinChip commented 1 year ago

I think this is a reasonable request. @Luckey-Elijah Are you still interested in contributing?

Luckey-Elijah commented 1 year ago

Yes, I can work on this!