-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add converters to DatePicker and TimePicker for DateOnly and TimeOnly #21989
base: main
Are you sure you want to change the base?
Conversation
Hey there @symbiogenesis! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
8e25fff
to
2f0f12b
Compare
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
There are some compilation errors:
|
2f0f12b
to
7ccb195
Compare
Should be fixed now |
@@ -67,6 +67,9 @@ public double CharacterSpacing | |||
} | |||
|
|||
/// <include file="../../docs/Microsoft.Maui.Controls/TimePicker.xml" path="//Member[@MemberName='Time']/Docs/*" /> | |||
#if NET6_0_OR_GREATER |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the pragma needed ?
It's unlikely maui will be ever build on .NET 5 again
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was explained to me in another PR that netstandard2.0 support will be maintained for the foreseeable future
I realize that full DateOnly and TimeOnly support is not implemented yet. This is a start in that direction.
Fixes #20438
As mentioned in the comments there, fixing that bug is merely a subset of #1100 which can be fixed without the need for a full implementation.