An Expo DevTools Plugin for Expo SQLite
An Expo SQLite DevTool that can run in an Expo App.
- Add the package to your Expo project:
```
npx expo install expo-sqlite-devtools
- Integrate Expo SQLite with the DevTool hook:
`ts
import { useSQLiteDevTools } from 'expo-sqlite-devtools';
const db = new SQLite.openDatabaseSync(...);
export default function App() {
useSQLiteDevTools(db);
return (
{/ ... /}
);
}
``