Hello, how can I avoid the scrolling of ScrollView when loading chat records in pages? When I send a message, I use messages.append(message), and when the user looks up the chat history, using messages.insert(contentsOf: preMessages, at: 0) causes the ScrollView to scroll down.
Thanks.
Hello, how can I avoid the scrolling of ScrollView when loading chat records in pages? When I send a message, I use
messages.append(message)
, and when the user looks up the chat history, usingmessages.insert(contentsOf: preMessages, at: 0)
causes the ScrollView to scroll down. Thanks.