Is there a composable for `TextInputEditText`?
# compose
a
Is there a composable for
TextInputEditText
?
c
TextInputEditText
is just a Material-themed EditText view.
TextField()
or
OutlinedTextField()
are the Compose replacements for it with Material styling, and
BasicTextField()
is a text field without styling
👍 1
✔️ 1