├── .eslintrc.js ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── material_theme_project_new.xml ├── modules.xml ├── prettier.xml ├── vcs.xml └── zustand-expo-devtools.iml ├── .prettierrc.js ├── README.md ├── babel.config.js ├── expo-module.config.json ├── package.json ├── src ├── devtools.ts ├── index.ts └── useZustandDevtools.ts ├── tsconfig.json └── webui ├── App.tsx ├── app.json ├── components ├── ActionDetail.tsx ├── ActionList.tsx └── StoreList.tsx ├── hooks └── useStores.ts ├── index.ts ├── package-lock.json ├── package.json ├── tsconfig.json └── types └── react-json-view-compare.d.ts /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/material_theme_project_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/material_theme_project_new.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/zustand-expo-devtools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.idea/zustand-expo-devtools.iml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/babel.config.js -------------------------------------------------------------------------------- /expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/expo-module.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/package.json -------------------------------------------------------------------------------- /src/devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/src/devtools.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/useZustandDevtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/src/useZustandDevtools.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webui/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/App.tsx -------------------------------------------------------------------------------- /webui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/app.json -------------------------------------------------------------------------------- /webui/components/ActionDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/components/ActionDetail.tsx -------------------------------------------------------------------------------- /webui/components/ActionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/components/ActionList.tsx -------------------------------------------------------------------------------- /webui/components/StoreList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/components/StoreList.tsx -------------------------------------------------------------------------------- /webui/hooks/useStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/hooks/useStores.ts -------------------------------------------------------------------------------- /webui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/index.ts -------------------------------------------------------------------------------- /webui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/package-lock.json -------------------------------------------------------------------------------- /webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/package.json -------------------------------------------------------------------------------- /webui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/tsconfig.json -------------------------------------------------------------------------------- /webui/types/react-json-view-compare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonny1525/zustand-expo-devtools/HEAD/webui/types/react-json-view-compare.d.ts --------------------------------------------------------------------------------