Might not be as simple as it sounds, using React Native's AsyncStorage won't work the way store is currently written and used :thinking:
Do "frequently store" init() and "skin store" init() on mount before full render if not already init? This way store.get can be asynchronous too (both stores are already cached so will work onwards)
Might not be as simple as it sounds, using React Native's
AsyncStorage
won't work the waystore
is currently written and used :thinking:Do "frequently store"
init()
and "skin store"init()
on mount before full render if not already init? This way store.get can be asynchronous too (both stores are already cached so will work onwards)