I'm developing a Kindle like reader in React Native. For better reading experience I'm trying to make a reader in horizontal pages style, like a ebook reader, using FlatList to dynamically fit the text in a View and create pages based on the fontsize.
So I want to transform this:
Into this:
This is possible using React/Js or other Js framework?

