A Lite SQLITE Viewer for react-native
- expo-sqlite
pnpm add rn-sqlite-viewer
// your db instance
const db = SQLite.openDatabase('your-project-name', '1.0.0')
import db from '../lib/db'
// ...
return (
<SQLiteViewer
db={db} // sqlite db instance
colors={{
tables: {
backgroundColor: styles.colors.gray700,
selectedTableButton: {
text: {
backgroundColor: styles.colors.gray300
}
}
},
details: {
backgroundColor: styles.colors.gray600
}
}}
/>
)