I am trying to make chat UI using RecyclerViewList in React Native. I am not able to figure out how to reverse the RecyclerViewList. By reverse I mean, user scrolls from bottom to top (to view old messages) and when new data is dynamically inserted at the bottom, it automatically keeps the scroll to the end.
Easiest way is to apply a ScaleY: -1 transform on RLV and each item inside it.
Most helpful comment
Easiest way is to apply a
ScaleY: -1transform on RLV and each item inside it.