{"id":15519355,"url":"https://github.com/frezyx/storage_view","last_synced_at":"2026-02-28T23:06:42.181Z","repository":{"id":66345813,"uuid":"507390352","full_name":"Frezyx/storage_view","owner":"Frezyx","description":"Flutter inspector tool for any database, storage and shared_preferences.","archived":false,"fork":false,"pushed_at":"2024-03-30T05:57:01.000Z","size":13024,"stargazers_count":14,"open_issues_count":3,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-21T16:47:07.343Z","etag":null,"topics":["dart","dart-library","dart-package","database","database-management","flutter","flutter-package","flutter-plugin","inspector","localstorage","sharedpreferences","sqlite","storage"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/storage_view","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Frezyx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-25T18:39:02.000Z","updated_at":"2024-03-19T02:14:08.000Z","dependencies_parsed_at":"2024-03-30T06:34:42.187Z","dependency_job_id":"9d3a2186-a76c-4325-a6d2-575cc8bcd9ef","html_url":"https://github.com/Frezyx/storage_view","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Frezyx/storage_view","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frezyx%2Fstorage_view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frezyx%2Fstorage_view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frezyx%2Fstorage_view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frezyx%2Fstorage_view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Frezyx","download_url":"https://codeload.github.com/Frezyx/storage_view/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frezyx%2Fstorage_view/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269915333,"owners_count":24495685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","dart-library","dart-package","database","database-management","flutter","flutter-package","flutter-plugin","inspector","localstorage","sharedpreferences","sqlite","storage"],"created_at":"2024-10-02T10:21:12.050Z","updated_at":"2026-02-28T23:06:42.174Z","avatar_url":"https://github.com/Frezyx.png","language":"C++","readme":"\u003ch1 align=\"center\"\u003e StorageView 🔎\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003e Flutter inspector tool for any database, storage and shared_preferences. \u003cbr\u003eCheck and modify database values from UI of application.\u003c/h3\u003e\n\u003cp align=\"center\"\u003eShow some ❤️ and \u003ca href=\"https://github.com/Frezyx/storage_view\"\u003estar the repo\u003c/a\u003e to support the project!\u003c/p\u003e\n\n\u003cdiv align=\"center\" \u003e\n  \u003ca href=\"https://github.com/Frezyx/storage_view/blob/main/docs/assets/storage_view_desktop.gif?raw=true\"\u003e\n    \u003cimg src=\"https://github.com/Frezyx/storage_view/blob/main/docs/assets/storage_view_desktop.gif?raw=true\"/\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n## Getting started\nFollow these steps to use this package\n\n### Add dependency\n\n```yaml\ndependencies:\n  storage_view: ^0.1.0-dev.5\n```\n\n### Add import package\n\n```dart\nimport 'package:storage_view/storage_view.dart';\n```\n\n### Implement driver\nThe package uses a driver [StorageDriver](https://github.com/Frezyx/storage_view/blob/main/packages/storage_view/lib/src/models/storage_driver.dart) to interact with the database. \u003cbr\u003e\nIn order to connect your database you should use one of available drivers: \u003cbr\u003e\n\n- [shared_preferences_storage_view_driver](https://github.com/Frezyx/storage_view/tree/main/packages/shared_preferences_storage_view_driver) that works with [shared_preferences](https://pub.dev/packages/shared_preferences) \u003cbr\u003e See [example](https://github.com/Frezyx/storage_view/tree/main/packages/shared_preferences_storage_view_driver/example) for more information\n- [flutter_secure_storage_view_driver](https://github.com/Frezyx/storage_view/tree/main/packages/flutter_secure_storage_view_driver) that works with [flutter_secure_storage](https://pub.dev/packages/flutter_secure_storage) \u003cbr\u003e See [example](https://github.com/Frezyx/storage_view/tree/main/packages/flutter_secure_storage_view_driver/example) for more information\n\nOr create your own StorageDriver implementation like there:\n```dart\nclass MockStorageDriver implements StorageDriver {\n  final _data = \u003cString, dynamic\u003e{\n    'test_id' : 'test',\n  };\n\n  @override\n  FutureOr\u003cSet\u003cString\u003e\u003e getKeys\u003cString\u003e() {\n    return _data.keys.toSet() as Set\u003cString\u003e;\n  }\n\n  @override\n  FutureOr\u003cT?\u003e read\u003cT\u003e(String key) {\n    return _data[key] as T;\n  }\n\n  @override\n  FutureOr\u003cvoid\u003e write\u003cT\u003e({required String key, required T value}) {\n    _data[key] = value;\n  }\n\n  @override\n  FutureOr\u003cvoid\u003e delete(String key) {\n    _data.remove(key);\n  }\n}\n```\n\n### Implement StoargeView\nAfter the driver was connected, you can use StorageView anywhere in your application.\n```dart\nfinal _mockStorageDriver = MockStorageDriver();\nScaffold(\n    body: StorageView(storageDriver: _mockStorageDriver),\n),\n```\n\n  \u003ca href=\"https://github.com/Frezyx/storage_view\"\u003e\u003cimg src=\"https://hits.dwyl.com/Frezyx/storage_view.svg?style=flat\" alt=\"Repository views\"\u003e\u003c/a\u003e\n\n## Additional information\nThe project is under development and ready for your pull-requests and issues 👍\u003cbr\u003e\nThank you for support ❤️\n\n\nFor help getting started with 😍 Flutter, view\n[online documentation](https://flutter.dev/docs), which offers tutorials, \nsamples, guidance on mobile development, and a full API reference.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrezyx%2Fstorage_view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrezyx%2Fstorage_view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrezyx%2Fstorage_view/lists"}