Ask Your Question
2

Is it possible to display the OutlinedTextField label constantly in Material 3 in Jetpack Compose for Android?

asked 2021-05-28 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-12-01 09:00:00 +0000

bukephalos gravatar image

Yes, it is possible to display the label of an OutlinedTextField constantly in Material 3 in Jetpack Compose for Android. You can use the Label parameter of the OutlinedTextField component to define a label that is always visible, regardless of whether there is text in the field or not. Here's an example:

OutlinedTextField(
    value = text,
    onValueChange = { newText -> text = newText },
    label = { Text("Username") }, // define the label here
    modifier = Modifier
        .fillMaxWidth()
        .padding(16.dp)
)

In this example, the label of the OutlinedTextField will always be "Username", regardless of whether there is any text in the field. You can customize the label text and style as desired using the Text component.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-05-28 11:00:00 +0000

Seen: 11 times

Last updated: Dec 01 '22