Skip to content

Instantly share code, notes, and snippets.

@RaheemJnr
Last active December 27, 2022 07:30
Show Gist options
  • Save RaheemJnr/956a979ca7726be8b3ea41153554ac72 to your computer and use it in GitHub Desktop.
Save RaheemJnr/956a979ca7726be8b3ea41153554ac72 to your computer and use it in GitHub Desktop.
a simple basic text field
var input by remember { mutableStateOf("") }
BasicTextField(
modifier = Modifier
.wrapContentSize()
.padding(horizontal = 12.dp)
.border(width = 1.5.dp, color = Color.Black, RoundedCornerShape(12.dp)),
value = input,
textStyle = MaterialTheme.typography.h4,
onValueChange = {
input = it
},
maxLines = 1,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment