Auto Scroll Down

1
I had worked on the chat application, Now I need to focus on the last chat The problem is if I send any message it goes last so I have to manually scroll down and see it
asked
1 answers
2

overflow-y: scroll;
display: flex;
flex-direction: column-reverse;

you should put this css code in your list view or container where the chat data is fetched

answered