Skip to content

Commit

Permalink
fix(droid): nullable types
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpinedam committed Jun 17, 2023
1 parent 325864f commit 9580db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/Media/ImageSource.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ private async Task<ImageData> FetchResourceWithDownsampling(CancellationToken ct
/// Now available outside in Uno library with <see cref="DrawableHelper"/>.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static Type Drawables
public static Type? Drawables
{
get => Uno.Helpers.DrawableHelper.Drawables;
set => Uno.Helpers.DrawableHelper.Drawables = value;
Expand Down

0 comments on commit 9580db2

Please sign in to comment.