rn-sqlite-viewer
v0.0.35
Published
A Lite SQLITE Viewer for react-native
Readme
rn-sqlite-viewer
A Lite SQLITE Viewer for react-native

Dependencies
- expo-sqlite
Setup
pnpm add rn-sqlite-viewerUsage
// 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
}
}}
/>
)