Vgs Outlined Text Field
fun VgsOutlinedTextField(state: VgsTextFieldState, onStateChange: (state: VgsTextFieldState) -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, readOnly: Boolean = false, textStyle: TextStyle = LocalTextStyle.current, label: @Composable () -> Unit? = null, placeholder: @Composable () -> Unit? = null, leadingIcon: @Composable () -> Unit? = null, trailingIcon: @Composable () -> Unit? = null, isError: Boolean = false, visualTransformation: VgsVisualTransformation = VgsVisualTransformation.None, keyboardOptions: KeyboardOptions = KeyboardOptions.Default, keyboardActions: KeyboardActions = KeyboardActions.Default, singleLine: Boolean = false, maxLines: Int = if (singleLine) 1 else Int.MAX_VALUE, minLines: Int = 1, interactionSource: MutableInteractionSource? = null, shape: Shape = TextFieldDefaults.OutlinedTextFieldShape, colors: TextFieldColors = TextFieldDefaults.outlinedTextFieldColors())
Outlined Material variant of VgsTextField. See VgsTextField for usage. Parameters match androidx.compose.material.OutlinedTextField.