val textFieldValue by remember { mutableStateOf("") }
NeoTextField(
value = textFieldValue
placeHolder = //TextField placeholder
icon = //Leading Icon, nullable
trailingIcon = //Trailing Icon, nullable
)
Show a leading Icon

NeoTextField(
value = textFieldValue,
icon = {
Icon(
imageVector = Icons.Default.Clear,
contentDescription = null,
)
}
)
Show a trailing Icon

NeoTextField(
value = textFieldValue,
trailingIcon = {
Icon(
imageVector = Icons.Default.Clear,
contentDescription = null,
)
}
)
Use label

Default state

Touched state
NeoTextField(
value = textFieldValue,
label = "Name"
)