Hi,
I have just started with FF and am trying to build out a somewhat simple app. The complication is that the audience will mostly do their work in either patchy or no reception areas, think farms in the middle of nowhere, where you have no service.
The app allows them to record various notes and information and then will store that locally, including things like images and videos, they may have over 50 of notes. Whilst I can probably manage this with local storage and pointers to the files the shear volume of these makes me want to store that data locally.
The users will later, when they have connectivity, will sync the data via REST services into our system.
All of this is fine apart from the development of this in flutter flow. Will it be better to develop and test with say firebase, and then switch over to SQLite once we are happy with and have the components all working?
What other approaches can I take?
A note may have a max of 20 attachments, they may be photo, video, PDF or Excel file
Thanks