expo-sqlite-devtools
v0.0.2
Published
An Expo DevTools Plugin for Expo SQLite
Readme
Expo SQLite Dev Plugin
An Expo SQLite DevTool that can run in an Expo App.
Installation
Add the package to your Expo project:
npx expo install expo-sqlite-devtoolsIntegrate 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> ); }
