Reputation: 60131
I follow the example code in https://developer.android.com/jetpack/compose/animation#updateTransition, and notice a warning as below. I tried Shift-Option-Enter, but it is not auto fixed.
I am not sure what the fix should be. Can someone advise?
Upvotes: 0
Views: 952
Reputation: 87854
This warning asks you for the label
parameter:
updateTransition(currentState, label = "inspection label")
Upvotes: 2