I have a form with multiple (~10) TextFields in Compose screen, should I do property drilling by passing each values and callback lamda down the tree or should I create a plain state holder class wrapping all TextFields value and update functions and then pass that stateholder down the tree?
Suggestions would be appreciated.