DropdownData

data class DropdownData(val selectedIndex: Int? = null, val labels: List<String> = emptyList(), val values: List<String> = emptyList(), val placeholder: String = "", val backgroundColor: Color? = null, val onValueChanged: (String, String) -> Unit = { _, _ -> })

Constructors

Link copied to clipboard
constructor(selectedIndex: Int? = null, labels: List<String> = emptyList(), values: List<String> = emptyList(), placeholder: String = "", backgroundColor: Color? = null, onValueChanged: (String, String) -> Unit = { _, _ -> })

Properties

Link copied to clipboard

Generates a unique accessibility identifier for Appium automation Format: dropdown_placeholder_selected_label

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard