-
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
Make ImageSourcePartExtensions public #16633
Conversation
@@ -6,7 +6,7 @@ | |||
|
|||
namespace Microsoft.Maui.Platform | |||
{ | |||
internal static class ImageSourcePartExtensions | |||
public static class ImageSourcePartExtensions |
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.
This change aligns all platforms (in Tizen this extension method was already public in .NET 7) and allows a way to load images without dependencies on the VirtualView.
@@ -7,7 +7,7 @@ | |||
|
|||
namespace Microsoft.Maui.Platform | |||
{ | |||
internal static class ImageSourcePartExtensions | |||
public static class ImageSourcePartExtensions |
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.
Feedback on making these methods public for .NET 8? We must also add a property to allow set the ImageSource of the ImageSourcePartLoaded?
This reverts commit 8b5c996.
Description of Change
Make
ImageSourcePartExtensions
public.Fixes