Skip to content

Commit

Permalink
Use a different gif URL as MS News blocked us (#21003)
Browse files Browse the repository at this point in the history
:'(
  • Loading branch information
mattleibow authored Mar 5, 2024
1 parent 7d53718 commit 8cd9239
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void OnResizeImageButtonClicked(object sender, EventArgs e)
void UseOnlineSource_Clicked(object sender, EventArgs e)
{
AnimatedGifImage.Source =
ImageSource.FromUri(new Uri("https://news.microsoft.com/wp-content/uploads/prod/2022/07/hexagon_print.gif"));
ImageSource.FromUri(new Uri("https://raw.githubusercontent.com/dotnet/maui/126f47aaf9d5c01224f54fe1c6bfb1c8299cc2fe/src/Compatibility/ControlGallery/src/iOS/GifTwo.gif"));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void AnimationStartStop_Clicked(object sender, EventArgs e)
void UseOnlineSource_Clicked(object sender, EventArgs e)
{
AnimatedGifImage.Source =
ImageSource.FromUri(new Uri("https://news.microsoft.com/wp-content/uploads/prod/2022/07/hexagon_print.gif"));
ImageSource.FromUri(new Uri("https://raw.githubusercontent.com/dotnet/maui/126f47aaf9d5c01224f54fe1c6bfb1c8299cc2fe/src/Compatibility/ControlGallery/src/iOS/GifTwo.gif"));
}
}
}

0 comments on commit 8cd9239

Please sign in to comment.