Replies: 1 comment
-
Ah, I found it. From #2215's breaking changes
So the removal was obviously intended. Is there a specific reason for it? It feels kind of annoying and pointless. I (and probably every MAUI developer out there) needs to write |
Beta Was this translation helpful? Give feedback.
-
I upgraded
CommunityToolkit.Maui
in my MAUI 9 app. However, now my custom converters no longer build:I saw that in the new version the
public abstract BaseConverter
has aprivate protected
constructor. Does this mean we're not meant to use theBaseConverter
any more? Or did I miss something obvious?I guess, I can write my own implementation of
IValueConverter
instead, but the big advantage ofBaseConverter<TFrom, TTo
to me was that it provided better type safety, and reduced boilerplate.Beta Was this translation helpful? Give feedback.
All reactions