Image

Inheritance: Element -> NavigableElement -> VisualElement -> View Xamarin.Forms documentation: Image API / Guide

For details on how the control actually works, please refer to the Xamarin.Forms documentation.

Constructors

Properties

Usages

Image("image-light.png", dark = "image-dark.png")
    .isAnimationPlaying(true)
    .isOpaque(false)

Get access to the underlying Xamarin.Forms.Image

let imageRef = ViewRef<Image>()

Image("image-light.png", dark = "image-dark.png")
    .reference(imageRef)

Last updated