Scroll Containers not working for List View in Native Apps

0
We have tried to build a chat app with the approaches mentioned in Make a Chat App in 60 minutes For the recent chats to list up at the end we have applied the below style in the List View: export const reverseList = { container: { display: 'flex', flexDirection: 'column-reverse', overflowY: 'scroll' }, However, the scroll doesn't work in such scenario.   If we try to use the List View inside a scroll container, then the scrollbar works but while loading the page, the recent chat message is not shown and we have to manually scroll through it.   Please suggest how to make it work, such that the old chats are scrollable whereas the new chats are always at the end of the list view. 
asked
0 answers