I have a long input page with multiple TextFields inside it. But when a TextField gains focus, the keyboard appears and the Column (which is scrollable) does not scroll to the specific TextField, and sometimes the keyboard overlaps the field.
I tried to see if this is an Android issue, and no, in normal Android View, the focused TextInputLayout will make the ScrollView scroll so that it's showing.
I tried using RelocationRequester in Compose when the TextField gains focus, but it doesn't seem to do anything, and it only has one method.
Is there a fix to this? Or do I need to wait until Focus and Relocation APIs are stable in Compose?