Package-level declarations

Types

Link copied to clipboard

Represents the colors used by a FioriSimpleTextField or FioriNoteTextField and its parts in different states See FioriStepperDefaults.colors for the default implementation that follows Material specifications.

Link copied to clipboard
Link copied to clipboard

Represents the styles used by a FioriSimpleTextField or FioriNoteTextField and its parts in different states See FioriStepperDefaults.styles for the default implementation that follows Material specifications.

Link copied to clipboard

Represents test tags for Fiori Stepper components.

Link copied to clipboard
class FioriStepperTestTagsManager(val tags: FioriStepperTestTags = FioriStepperTestTags.Builder().build())

Manages the test tags for the Fiori Stepper component.

Link copied to clipboard

Represents the text style used by a FioriSimpleTextField or FioriNoteTextField and its parts in different states See FioriStepperDefaults.textStyles() for the default implementation that follows Material specifications.

Functions

Link copied to clipboard
fun FioriStepper(modifier: Modifier = Modifier, value: FioriStepperValue, onValueChange: (FioriStepperValue) -> Unit, content: FioriStepperContent? = null, enabled: Boolean = true, readOnly: Boolean = false, textSelectable: Boolean = true, isError: Boolean = false, isHorizontal: Boolean = false, leadingIcon: FioriIcon? = null, trailingIcon: FioriIcon? = null, keyboardOptions: KeyboardOptions = KeyboardOptions.Default.copy( capitalization = KeyboardCapitalization.Sentences, autoCorrectEnabled = true, keyboardType = KeyboardType.Number, imeAction = ImeAction.Done ), keyboardActions: KeyboardActions = KeyboardActions.Default, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, colors: FioriStepperColors = FioriStepperDefaults.colors(), textStyles: FioriStepperTextStyles = FioriStepperDefaults.textStyles(), styles: FioriStepperStyles = FioriStepperDefaults.styles())

Fiori-styled stepper component for numeric value input with increment/decrement controls.