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:
import { useSQLiteDevTools } from 'expo-sqlite-devtools'; const db = new SQLite.openDatabaseSync(...); export default function App() { useSQLiteDevTools(db); return ( <View> {/* ... */} </View> ); }