I am currently creating an app with FlutterFlow that loads various daily news items from Firestore.
Each daily message is structured in Firestore like this:
- Title (String)
- Description (String)
- Image (Image)
- Content (Array)
- Type (String) [Text, Image or PageBreak]
- Value (String)
The content array is very filled with many texts and images.
Readers should receive only a certain part of the content array. Once they have read this part, the next button must be clicked. Only then will more content be loaded.
I want to use FlutterFlow to load different entries from the array to a unit, up to the type PageBreak.
Then the readers should press the Next button and the next part of the content, up to the next type PageBreak, will be loaded.
Currently, the whole content is loaded. This and also Infinity Scroll are no options for me.
Has anyone had a similar problem before or can help me with this? Thanks in advance :)