TimePicker

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

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

Constructors

Properties

iOS-specific Properties

Usages

TimePicker(TimeSpan.Parse("00:00:01"), TimeChanged)
    .characterSpacing(1.0)
    .format("dd/MM/yyyy")
    .textColor(Color.Red.ToFabColor(), Color.Blue.ToFabColor())
    .font(namedSize = NamedSize.Large, fontFamily = "Arial", attributes = FontAttributes.Bold)
    .textTransform(TextTransform.Lowercase)

Get access to the underlying Xamarin.Forms.TimePicker

let timePickerRef = ViewRef<TimePicker>()

TimePicker(TimeSpan.Parse("00:00:01"), TimeChanged)
    .reference(timePickerRef)

Last updated