All Questions
4 questions
0
votes
1
answer
1k
views
Jetpack compose text field cleared when non-compose state is read
I have a Jetpack compose form, created from this tutorial. It shows errors nicely by validating the form when you click the submit button. I want the button on my form to be dynamically enabled, using ...
11
votes
6
answers
22k
views
JetPack Compose Button with drawable
How can we achieve this in jetpack compose
I'm doing something like this
Button(
elevation = ButtonDefaults.elevation(
defaultElevation = 0.dp,
pressedElevation = 8.dp,
...
5
votes
1
answer
6k
views
Dynamically add views on click of Button using Jetpack Compose
I want to dynamically add Text Fields to my layout everytime user click "Add" button.Added Text Field should be added above "Add" button .i.e.between Step 1 TextField and Add ...