Text Input Data
data class TextInputData(val text: String? = null, val placeholder: String? = null, val keyboardType: KeyboardOptions = KeyboardOptions.Default.copy(keyboardType = KeyboardType.Text), val minimum: Int? = null, val maximum: Int? = null, val characterLimit: Int? = null, val inputType: InputType = InputType.TEXT, val isMultiline: Boolean = false, val backgroundColor: Color? = null, val onTextChanged: (String) -> Unit? = {})
Constructors
Link copied to clipboard
constructor(text: String? = null, placeholder: String? = null, keyboardType: KeyboardOptions = KeyboardOptions.Default.copy(keyboardType = KeyboardType.Text), minimum: Int? = null, maximum: Int? = null, characterLimit: Int? = null, inputType: InputType = InputType.TEXT, isMultiline: Boolean = false, backgroundColor: Color? = null, onTextChanged: (String) -> Unit? = {})