I have a scrollview which does not contain a list of items with ID's:
ScrollView {
Text(...)
TextField(...)
MyView()
...
Button(...)
}
How can I scroll this programmatically to the bottom?
I have found several examples of how to scroll a scrollview programmatically, but all of them involve using a ScrollViewReader
to scroll to an ID, for example in the answers to this question
How can I achieve this if no id is defined?