Closed AngelRmrz closed 11 months ago
this is not supported on the flipper side
I think yes, the code below is how i implemented that functionality in a utils folder
export function initializeDevTools() {
console.info('Dev tools initialized successfully 🚀👨🏽💻👾');
initializeMMKVFlipper({
stateStorage,
apolloStorage,
});
apolloDevToolsInit(client);
}
And then u calle it inside the app.tsx
file
if (__DEV__) {
initializeDevTools();
}
Currently i need to have 2 storages one for apollo client and another one for zustand, but im facing the issue that just the apollo one is showing in the flipper app.
This is the code
if (__DEV__) { initializeMMKVFlipper({ state: apolloStorage, }); }
if (__DEV__) { initializeMMKVFlipper({ state: stateStorage, }); }