You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Data is cashed once a user loads a screen (component mounts). Hence, for example, if a user is online and did not open the screen containing Products list. The data within Products collection will not be available when user goes offline.
Proposed solution: Once the app starts, fetch all data necessary for the functioning of offline mode features.
Drawbacks: Possible lower performance, and higher cost of reads.
The text was updated successfully, but these errors were encountered:
Data is cashed once a user loads a screen (component mounts). Hence, for example, if a user is online and did not open the screen containing Products list. The data within Products collection will not be available when user goes offline.
Proposed solution: Once the app starts, fetch all data necessary for the functioning of offline mode features.
Drawbacks: Possible lower performance, and higher cost of reads.
The text was updated successfully, but these errors were encountered: