Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.73 KB

readme.md

File metadata and controls

44 lines (35 loc) · 1.73 KB

Maui Custom Date Picker

Maui Custom Date Picker is a MAUI library that implements and extends the default Date Picker.

Android iOS Mac Windows
NullableDatePicker - -
NullableTimePicker 🛠️ 🛠️ - -
EditableDateTimePicker - - - -

ToDo

  • Improve Documentation
  • Tests

How To Use

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}" />

Screenshot