-
Notifications
You must be signed in to change notification settings - Fork 410
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
[Proposal] IsStringNullOrEmpty Converters #66
Labels
approved
This Proposal has been approved and is ready to be added to the Toolkit
champion
A member of the .NET MAUI Toolkit core team has chosen to champion this feature
documentation approved
help wanted
This proposal has been approved and is ready to be implemented
proposal
A fully fleshed out proposal describing a new feature in syntactic and semantic detail
Milestone
Comments
brminnick
added
pending documentation
This feature requires documentation
approved
This Proposal has been approved and is ready to be added to the Toolkit
proposal
A fully fleshed out proposal describing a new feature in syntactic and semantic detail
champion
A member of the .NET MAUI Toolkit core team has chosen to champion this feature
labels
Sep 25, 2021
brminnick
added
the
help wanted
This proposal has been approved and is ready to be implemented
label
Oct 4, 2021
Hi again! I added the ViewModel for this sample on #132 PR, so the only thing left is modifying the XAML. I can do that if you like :) |
Hi! I want to help with the sample :) |
Well it looks like you already did that before being assigned hahaha |
brminnick
removed
the
help wanted
This proposal has been approved and is ready to be implemented
label
Oct 16, 2021
Thanks @StevenHanquez! It is assigned to you. |
brminnick
changed the title
[Proposal] IsNullOrEmpty Converters
[Proposal] IsStringNullOrEmpty Converters
Feb 10, 2022
ghost
added
the
help wanted
This proposal has been approved and is ready to be implemented
label
Feb 10, 2022
brminnick
removed
help wanted
This proposal has been approved and is ready to be implemented
approved
This Proposal has been approved and is ready to be added to the Toolkit
pending documentation
This feature requires documentation
labels
Feb 10, 2022
6 tasks
ghost
added
the
approved
This Proposal has been approved and is ready to be added to the Toolkit
label
Feb 10, 2022
ghost
added
the
help wanted
This proposal has been approved and is ready to be implemented
label
Feb 10, 2022
ghost
reopened this
Feb 11, 2022
Reopening Proposal. Only Proposals moved to the |
ghost
added
the
documentation approved
label
Mar 30, 2022
ghost
closed this as completed
Mar 30, 2022
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
approved
This Proposal has been approved and is ready to be added to the Toolkit
champion
A member of the .NET MAUI Toolkit core team has chosen to champion this feature
documentation approved
help wanted
This proposal has been approved and is ready to be implemented
proposal
A fully fleshed out proposal describing a new feature in syntactic and semantic detail
IsStringNullOrEmptyConverter
Summary
The
IsStringNullOrEmptyConverter
is a converter that allows users to convert an incomingstring
binding to abool
value. This value represents if the incoming binding value is null or empty usingstring.IsNullOrEmpty
.The
IsStringNotNullOrEmptyConverter
is a converter that allows users to convert an incomingstring
binding to abool
value. This value represents if the incoming binding value is null or empty usingstring.IsNullOrEmpty
.Detailed Design
IsStringNullOrEmptyConverter.shared.cs
IsStringNotNullOrEmptyConverter.shared.cs
Usage Syntax
XAML Usage
C# Usage
The text was updated successfully, but these errors were encountered: