Bump CommunityToolkit.Maui from 13.0.0 to 14.0.0#2
Open
dependabot[bot] wants to merge 1 commit intomainfrom
Open
Bump CommunityToolkit.Maui from 13.0.0 to 14.0.0#2dependabot[bot] wants to merge 1 commit intomainfrom
dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
--- updated-dependencies: - dependency-name: CommunityToolkit.Maui dependency-version: 14.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated CommunityToolkit.Maui from 13.0.0 to 14.0.0.
Release notes
Sourced from CommunityToolkit.Maui's releases.
14.0.0
CommunityToolkit.Maui v14.0.0I am excited to debut two new source generators!
[BindableProperty][AttachedBindableProperty<T>]These new source generators make it easier than ever to create a
BindablePropertyfor your .NET MAUI apps by allowing us to write all the associated boiler-plate code for you. In fact, all Bindable Properties inCommunityToolkit.Mauiare now automatically generated using these new source generators!For an in-depth overview of both
[BindableProperty]and[AttachedBindableProperty<T>], check out my comprehensive write-up:👉 https://codetraveler.io/2026/01/29/introducing-bindable-property-source-generators/
Bug Fixes + New Features
Alongside the new Source Generators, this Release also brings important bug fixes and new features:
StatusBarBehaviorStatusBarBehavioron Android 35+SnackbarPopupNavigatedFromEventArgsCollectionViewinPopupIntroducing Bindable Property Source Generators
Opt-into this Experimental Feature
We have decided to release this feature using the
[Experimental]attribute. This allows us to let you try out its features and provide feedback while giving us the flexibility to update it with your feedback over the next few releases.In the
csprojfile of your .NET MAUI app, add the following code:In the mean-time, we will be writing more comprehensive documentation and writing Analyzers, similar to
CommunityToolkit.MVVM, to help provide you the best coding experience!Using
[BindableProperty]To leverage the Bindable Property Source Generator, first ensure you using a
partialclass. Then, add thepartialkeyword and attach the[BindableProperty]attribute to your property:partialkeyword to the classpartialkeyword the Property for which to generate an associated Bindable Property[BindableProperty]attribute to the property to make it bindable