CarouselView

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

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

Constructors

Properties

Events

Usages

let items = [ 1 .. 1000 ]

let indicatorViewRef = ViewRef<IndicatorView>()

(CarouselView(items)
    (fun item -> Label($"{item}")))
    .indicatorView(indicatorViewRef)
    .isScrollAnimated(false)
    .isSwipeEnabled(false)
    .isBounceEnabled(false)
    .isDragging(false)

Get access to the underlying Xamarin.Forms.CollectionView

let carouselViewRef = ViewRef<CarouselView>()

(CarouselView(items)
    (fun item -> Label($"{item}")))
    .reference(carouselViewRef)

Last updated