Maui Custom Date Picker is a MAUI library that implements and extends the default Date Picker.
Android | iOS | Mac | Windows | |
---|---|---|---|---|
NullableDatePicker | ✅ | ✅ | - | - |
NullableTimePicker | 🛠️ | 🛠️ | - | - |
EditableDateTimePicker | - | - | - | - |
- Improve Documentation
- Tests
Install the NugetPackage into your shared projects (available soon)
Install-Package FedericoNembrini.Maui.CustomDatePicker
Then in the MauiProgram.cs, and the CustomDatePicker configuration method -
using FedericoNembrini.Maui.CustomDatePicker;;
builder
.UseMauiApp<App>()
.UseCustomDatePicker();
Then in your .xaml use it like as a control
xmlns:cdp="clr-namespace:FedericoNembrini.Maui.CustomDatePicker;assembly=MauiCustomDatePicker"
<cdp:NullableDatePicker NullableDate="{Binding TestDate}" />