{"id":15465707,"url":"https://github.com/brianegan/flutter_redux_dev_tools","last_synced_at":"2026-03-12T01:34:37.541Z","repository":{"id":26962767,"uuid":"112030108","full_name":"brianegan/flutter_redux_dev_tools","owner":"brianegan","description":"A Time Traveling Redux Debugger for Flutter","archived":false,"fork":false,"pushed_at":"2022-04-28T11:45:54.000Z","size":10741,"stargazers_count":40,"open_issues_count":3,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-22T10:24:41.106Z","etag":null,"topics":["dart","flutter","redux","redux-devtools"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","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/brianegan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-25T19:47:15.000Z","updated_at":"2022-09-14T02:01:13.000Z","dependencies_parsed_at":"2022-07-27T09:02:37.876Z","dependency_job_id":null,"html_url":"https://github.com/brianegan/flutter_redux_dev_tools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brianegan/flutter_redux_dev_tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fflutter_redux_dev_tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fflutter_redux_dev_tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fflutter_redux_dev_tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fflutter_redux_dev_tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brianegan","download_url":"https://codeload.github.com/brianegan/flutter_redux_dev_tools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brianegan%2Fflutter_redux_dev_tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30411984,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T00:40:14.898Z","status":"ssl_error","status_checked_at":"2026-03-12T00:40:08.439Z","response_time":84,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","flutter","redux","redux-devtools"],"created_at":"2024-10-02T01:02:49.739Z","updated_at":"2026-03-12T01:34:37.524Z","avatar_url":"https://github.com/brianegan.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter_redux_dev_tools\n\n[![Build Status](https://travis-ci.org/brianegan/flutter_redux_dev_tools.svg?branch=master)](https://travis-ci.org/brianegan/flutter_redux_dev_tools) [![codecov](https://codecov.io/gh/brianegan/flutter_redux_dev_tools/branch/master/graph/badge.svg)](https://codecov.io/gh/brianegan/flutter_redux_dev_tools)\n\nA Widget you can use to show a [Redux](https://pub.dartlang.org/packages/redux) Time Travel UI. Simply put it in a part of your UI that makes sense (Such as a Dev Tools Drawer), pass it a `DevToolsStore` and you'll be good to go!\n\nNote: This Widget does not work with a normal [Redux](https://pub.dartlang.org/packages/redux) `Store`. It is meant to work with the [redux_dev_tools package](https://pub.dartlang.org/packages/redux_dev_tools), which provides a `DevToolsStore`. The `DevToolsStore` is a drop-in replacement for your Store during Development!\n\n### Demo\n\nA simple Flutter app that allows you to Increment and Decrement a counter.\n\n![A screenshot of the Dev Tools in Action](https://gitlab.com/brianegan/flutter_redux_dev_tools/raw/master/devtools.gif)\n\n### Usage\n\n  1. Create a `main_dev.dart` file\n  2. In this file, create a `DevToolsStore` in place of a normal redux `Store`\n  3. Create a `ReduxDevTools` widget, passing through the Store. You can place this Widget wherever makes sense in your app! One good suggestion: In a \"Dev Tools Drawer.\" This is generally the `endDrawer` in your Scaffold, and can contain different types of tools for a Dev Build of your app. \n\n### Example\n\nThis example paints only a broad outline of how to use the ReduxDevTools. For a complete example, see the `example` folder.\n\n```dart\nint addReducer(int state, action) =\u003e state + 1;\n\n// Create a DevToolsStore instead of a normal Store during Development\nfinal store = DevToolsStore\u003cint\u003e(\n  addReducer,\n  initialState: 0,\n);\n\n// Finally, create your app with a Redux Dev Tools\nmain() { \n  runApp(MaterialApp(\n    home: Scaffold(\n      endDrawer: ReduxDevTools\u003cint\u003e(store),\n    ),\n  ));\n}\n```\n\n## Credits\n\nAll of this is inspired by the original [Redux Devtools](https://github.com/gaearon/redux-devtools).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrianegan%2Fflutter_redux_dev_tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrianegan%2Fflutter_redux_dev_tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrianegan%2Fflutter_redux_dev_tools/lists"}