diff options
| author | xengineering <me@xengineering.eu> | 2026-03-20 17:17:08 +0100 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-03-20 17:20:13 +0100 |
| commit | 2aa1aa0d29fd551509d4a1ebb2a0a5470fc460d7 (patch) | |
| tree | 6889528cb299ab27160ee482dd17746b00cc8ee9 | |
| parent | 5fa8c6496076422cd3f117978654e76edbda51dc (diff) | |
| download | sia-app-2aa1aa0d29fd551509d4a1ebb2a0a5470fc460d7.tar sia-app-2aa1aa0d29fd551509d4a1ebb2a0a5470fc460d7.tar.zst sia-app-2aa1aa0d29fd551509d4a1ebb2a0a5470fc460d7.zip | |
Add sqlite3 package
Application data should be stored in a single sqlite3 database. This
allows pretty mature and powerful data storage which works on Linux,
Android, iOS, MacOS and Windows.
| -rw-r--r-- | pubspec.lock | 8 | ||||
| -rw-r--r-- | pubspec.yaml | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/pubspec.lock b/pubspec.lock index cbe497a..a861593 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -392,6 +392,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.10.2" + sqlite3: + dependency: "direct main" + description: + name: sqlite3 + sha256: caa693ad15a587a2b4fde093b728131a1827903872171089dedb16f7665d3a91 + url: "https://pub.dev" + source: hosted + version: "3.2.0" stack_trace: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index a02bef0..a80996c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -12,6 +12,7 @@ dependencies: mqtt_client: ^10.11.3 path_provider: ^2.1.5 provider: ^6.1.5 + sqlite3: ^3.2.0 dev_dependencies: flutter_test: |
