You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2024. It is now read-only.
var aspectFillContainer = new ViewContainer<Image>(Test.Image.AspectFill, new Image { Aspect = Aspect.AspectFill });
var aspectFitContainer = new ViewContainer<Image>(Test.Image.AspectFit, new Image { Aspect = Aspect.AspectFit });
var fillContainer = new ViewContainer<Image>(Test.Image.Fill, new Image { Aspect = Aspect.Fill });
var isLoadingContainer = new StateViewContainer<Image>(Test.Image.IsLoading, new Image());
var isOpaqueContainer = new StateViewContainer<Image>(Test.Image.IsOpaque, new Image());
InitializeElement(aspectFillContainer.View);
InitializeElement(aspectFitContainer.View);
InitializeElement(fillContainer.View);
InitializeElement(isLoadingContainer.View);
InitializeElement(isOpaqueContainer.View);
var sourceContainer = new ViewContainer<Image>(Test.Image.Source, new Image { Source = "https://raw.githubusercontent.com/xamarin/Xamarin.Forms/main/Xamarin.Forms.Controls/coffee.png" });