{"id":15497883,"url":"https://github.com/rodydavis/storyboard","last_synced_at":"2025-10-04T05:50:12.443Z","repository":{"id":53121545,"uuid":"260786495","full_name":"rodydavis/storyboard","owner":"rodydavis","description":"Flutter Storyboard","archived":false,"fork":false,"pushed_at":"2023-01-18T22:11:42.000Z","size":5545,"stargazers_count":202,"open_issues_count":6,"forks_count":20,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-14T01:01:43.828Z","etag":null,"topics":["dart","debugger-visualizer","flutter","storyboards","ui-design"],"latest_commit_sha":null,"homepage":"https://rodydavis.github.io/storyboard/","language":"Dart","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/rodydavis.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":"2020-05-02T22:28:57.000Z","updated_at":"2025-06-10T17:58:35.000Z","dependencies_parsed_at":"2023-02-10T18:30:40.314Z","dependency_job_id":null,"html_url":"https://github.com/rodydavis/storyboard","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rodydavis/storyboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodydavis%2Fstoryboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodydavis%2Fstoryboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodydavis%2Fstoryboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodydavis%2Fstoryboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rodydavis","download_url":"https://codeload.github.com/rodydavis/storyboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodydavis%2Fstoryboard/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265611434,"owners_count":23797885,"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","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","debugger-visualizer","flutter","storyboards","ui-design"],"created_at":"2024-10-02T08:41:05.220Z","updated_at":"2025-10-04T05:50:07.411Z","avatar_url":"https://github.com/rodydavis.png","language":"Dart","funding_links":["https://www.buymeacoffee.com/rodydavis","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=WSH3GVC49GNNJ"],"categories":[],"sub_categories":[],"readme":"[![Buy Me A Coffee](https://img.shields.io/badge/Donate-Buy%20Me%20A%20Coffee-yellow.svg)](https://www.buymeacoffee.com/rodydavis)\n[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=WSH3GVC49GNNJ)\n![github pages](https://github.com/rodydavis/storyboard/workflows/github%20pages/badge.svg)\n[![GitHub stars](https://img.shields.io/github/stars/rodydavis/storyboard?color=blue)](https://github.com/rodydavis/storyboard)\n[![flutter_storyboard](https://img.shields.io/pub/v/flutter_storyboard.svg)](https://pub.dev/packages/flutter_storyboard)\n\n# storyboard\n\nA Flutter Debug tool to see and test all your screens at once.\n\nOnline Demo: https://rodydavis.github.io/storyboard/\n\n![screenshot](https://github.com/rodydavis/storyboard/blob/master/doc/screenshot.png?raw=true)\n\n## Examples\n\n[Custom Lane Builder](https://github.com/rodydavis/storyboard/blob/master/example/lib/examples/custom_lane_builder.dart)\n\n[Dynamic Screen Sizes](https://github.com/rodydavis/storyboard/blob/master/example/lib/examples/dynamic_screen_sizes.dart)\n\n[Material App Example](https://github.com/rodydavis/storyboard/blob/master/example/lib/examples/material_app_example.dart)\n\n[Widget Example](https://github.com/rodydavis/storyboard/blob/master/example/lib/examples/widget_example.dart)\n\n[Multiple Custom Lanes Example](https://github.com/rodydavis/storyboard/blob/master/example/lib/examples/complete_custom_lanes_builder.dart)\n\n## Getting Started\n\nWrap your MaterialApp with Storyboard.\n\n```dart\nreturn StoryBoard.material(\n      child: MaterialApp(\n        debugShowCheckedModeBanner: false,\n        title: 'Flutter Storyboard Example',\n        theme: ThemeData.light().copyWith(\n          visualDensity: VisualDensity.adaptivePlatformDensity,\n        ),\n        darkTheme: ThemeData.dark().copyWith(\n          visualDensity: VisualDensity.adaptivePlatformDensity,\n        ),\n        themeMode: ThemeMode.light,\n        home: HomeScreen(),\n        routes: {\n          '/home': (_) =\u003e HomeScreen(),\n          '/about': (_) =\u003e AboutScreen(),\n          '/settings': (_) =\u003e SettingsScreen(),\n        },\n      ),\n    );\n```\n\nWrap your WidgetsApp with Storyboard.widgets().\nWrap your CupertinoApp with Storyboard.cupertino().\n\n## Custom Routes and Widgets\n\nYou can add any number of custom widgets to the canvas, including custom routes. You can add dummy data to the constructors here as it will render all default values.\n\n```dart\ncustomScreens: [\n  SettingsScreen(),\n  AboutScreen(),\n  CustomWidget(title: 'Dummy Data'),\n],\ncustomRoutes: [\n  RouteSettings(name: '/about'),\n],\n```\n\n## Misc\n\nNow you can test all your screens with a hot reload! You can also disable the widget at any time by setting `enabled` to false. You will need to do a hot restart after you change this value.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodydavis%2Fstoryboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frodydavis%2Fstoryboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodydavis%2Fstoryboard/lists"}