sqflite_orm 0.1.5
sqflite_orm: ^0.1.5 copied to clipboard
A comprehensive Flutter/Dart SQLite ORM package with cross-platform support (works with both Flutter and pure Dart on desktop), automatic migrations, relationship handling, query builder, and web-base [...]
0.1.5 #
- Simplified sqflite_dev integration - removed unnecessary conditional imports
- sqflite_dev now directly imported since it supports both Flutter and pure Dart
- Improved code simplicity and maintainability
0.1.4 #
- Added comprehensive dartdoc documentation for public API (20%+ coverage)
- Added
analysis_options.yamlwith Flutter linting configuration - Fixed all linting and formatting issues
- Tightened dependency constraints for better compatibility
- Added platform support declarations (Android, iOS, Windows, macOS, Linux)
- Added
sqflite_commonto dependencies for proper pub.dev validation
0.1.3 #
- Fixed conditional imports for mobile factory to prevent Flutter dependency errors in pure Dart scripts
- Improved platform detection logic to prioritize desktop platforms
- Example now works correctly in both Flutter apps and pure Dart scripts
0.1.2 #
- Added Finzo example app reference in README
0.1.1 #
- Network access support for Web UI when debugging on Android devices
- Improved Web UI with better pagination and styling
0.1.0 #
- Initial release
- Cross-platform SQLite database support (desktop, Android, iOS)
- ORM with annotations (@Table, @Column, @PrimaryKey, @ForeignKey)
- Relationship support (OneToMany, ManyToOne, ManyToMany)
- Query builder with fluent API
- Automatic migrations
- Schema validation at runtime
- Web UI for database management (localhost:4800)
- Transaction support