How can I create a List that starts on the bottom?
All Lists start on top, but in a chat, the desired content scroll direction is up (inverted).
There are workarounds that rely on flipping the list with rotation effects, but these don’t work well, and make the logic very hard to understand.
Scrolling to bottom after some delay on list appear has side effects (loads rows on top).
Ideally there would be List { … }.scrollDirection(.inverted)
api, that automatically loads the list from its last item, not first.