Class

FocusOrder

Specifies custom focus destinations that are used instead of the default focus traversal order.

Common
Deprecated Use FocusProperties instead
class FocusOrder internal constructor(private val focusProperties: FocusProperties)

Specifies custom focus destinations that are used instead of the default focus traversal order.

Secondary Constructors

constructor() : this(FocusPropertiesImpl())

Properties

Common
var next: FocusRequester

A custom item to be used when the user requests a focus moves to the "next" item.

Common
var previous: FocusRequester

A custom item to be used when the user requests a focus moves to the "previous" item.

Common
var up: FocusRequester

A custom item to be used when the user moves focus "up".

Common
var down: FocusRequester

A custom item to be used when the user moves focus "down".

Common
var left: FocusRequester

A custom item to be used when the user requests a focus moves to the "left" item.

Common
var right: FocusRequester

A custom item to be used when the user requests a focus moves to the "right" item.

Common
var start: FocusRequester

A custom item to be used when the user requests a focus moves to the "left" in LTR mode and "right" in RTL mode.

Common
var end: FocusRequester

A custom item to be used when the user requests a focus moves to the "right" in LTR mode and "left" in RTL mode.