Ui Input Field Renderer
Constructors
Functions
Link copied to clipboard
operator fun invoke(prop: KMutableProperty0<Double>, builder: UiInputFieldComponent.Options<Double>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Double, UiInputFieldComponent.Props<Double>>>
Content copied to clipboard
operator fun invoke( value: Double, onChange: (Double) -> Unit, builder: UiInputFieldComponent.Options<Double>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Double, UiInputFieldComponent.Props<Double>>>
Content copied to clipboard
Renders the field for a Double
operator fun invoke(prop: KMutableProperty0<Float>, builder: UiInputFieldComponent.Options<Float>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Float, UiInputFieldComponent.Props<Float>>>
Content copied to clipboard
operator fun invoke( value: Float, onChange: (Float) -> Unit, builder: UiInputFieldComponent.Options<Float>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Float, UiInputFieldComponent.Props<Float>>>
Content copied to clipboard
Renders the field for a Float
operator fun invoke(prop: KMutableProperty0<Int>, builder: UiInputFieldComponent.Options<Int>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Int, UiInputFieldComponent.Props<Int>>>
Content copied to clipboard
operator fun invoke( value: Int, onChange: (Int) -> Unit, builder: UiInputFieldComponent.Options<Int>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Int, UiInputFieldComponent.Props<Int>>>
Content copied to clipboard
Renders the field for an Int
operator fun invoke(prop: KMutableProperty0<String>, builder: UiInputFieldComponent.Options<String>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<String, UiInputFieldComponent.Props<String>>>
Content copied to clipboard
operator fun invoke( value: String, onChange: (String) -> Unit, builder: UiInputFieldComponent.Options<String>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<String, UiInputFieldComponent.Props<String>>>
Content copied to clipboard
Renders the field for a String
Link copied to clipboard
fun nullable(prop: KMutableProperty0<Double?>, builder: UiInputFieldComponent.Options<Double?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Double?, UiInputFieldComponent.Props<Double?>>>
Content copied to clipboard
fun nullable( value: Double?, onChange: (Double?) -> Unit, builder: UiInputFieldComponent.Options<Double?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Double?, UiInputFieldComponent.Props<Double?>>>
Content copied to clipboard
Renders the field for a nullable Double
fun nullable(prop: KMutableProperty0<Float?>, builder: UiInputFieldComponent.Options<Float?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Float?, UiInputFieldComponent.Props<Float?>>>
Content copied to clipboard
fun nullable( value: Float?, onChange: (Float?) -> Unit, builder: UiInputFieldComponent.Options<Float?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Float?, UiInputFieldComponent.Props<Float?>>>
Content copied to clipboard
Renders the field for a nullable Float
fun nullable(prop: KMutableProperty0<Int?>, builder: UiInputFieldComponent.Options<Int?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Int?, UiInputFieldComponent.Props<Int?>>>
Content copied to clipboard
fun nullable( value: Int?, onChange: (Int?) -> Unit, builder: UiInputFieldComponent.Options<Int?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<Int?, UiInputFieldComponent.Props<Int?>>>
Content copied to clipboard
Renders the field for a nullable Int
fun nullable(prop: KMutableProperty0<String?>, builder: UiInputFieldComponent.Options<String?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<String?, UiInputFieldComponent.Props<String?>>>
Content copied to clipboard
fun nullable( value: String?, onChange: (String?) -> Unit, builder: UiInputFieldComponent.Options<String?>.() -> Unit = {}): ComponentRef<UiInputFieldComponent<String?, UiInputFieldComponent.Props<String?>>>
Content copied to clipboard
Renders the field for a nullable String