├── .github └── workflows │ ├── gh-pages.yml │ └── main.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bricks └── dashbook_gallery │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── __brick__ │ └── gallery │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ ├── main.dart │ │ └── widgets │ │ │ ├── text.dart │ │ │ └── widgets.dart │ │ └── pubspec.yaml │ └── brick.yaml ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── lib │ ├── main.dart │ ├── main_without_theme.dart │ ├── properties │ │ └── date_time_property.dart │ ├── stories.dart │ ├── text_story.dart │ └── widgets │ │ └── message_card.dart ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── lib ├── dashbook.dart └── src │ ├── decorator.dart │ ├── device_size_extension.dart │ ├── platform_utils │ ├── mobile.dart │ ├── platform_utils.dart │ ├── unsupported.dart │ └── web.dart │ ├── preferences.dart │ ├── story.dart │ ├── story_util.dart │ └── widgets │ ├── actions_container.dart │ ├── dashbook_icon.dart │ ├── device_preview.dart │ ├── device_settings_container.dart │ ├── helpers.dart │ ├── intructions_dialog.dart │ ├── keys.dart │ ├── link.dart │ ├── preview_container.dart │ ├── properties_container.dart │ ├── property_widgets │ ├── bool_property.dart │ ├── border_radius_property.dart │ ├── color_property.dart │ ├── edge_insets_property.dart │ ├── list_property.dart │ ├── number_property.dart │ ├── options_property.dart │ ├── properties.dart │ ├── slider_property.dart │ ├── text_property.dart │ └── widgets │ │ ├── property_4_integer_form.dart │ │ ├── property_dialog.dart │ │ ├── property_scaffold.dart │ │ └── title_with_tooltip.dart │ ├── select_device │ ├── components │ │ ├── device_dropdown.dart │ │ └── text_scale_factor_slider.dart │ ├── custom_device.dart │ ├── device_dialog_buttons.dart │ ├── device_settings.dart │ └── select_device.dart │ ├── side_bar_panel.dart │ ├── stories_list.dart │ └── widget.dart ├── media ├── dashbook-logo-typo.png ├── dashbook-logo-typo.svg ├── dashbook-logo.afdesign ├── dashbook-logo.png └── dashbook-logo.svg ├── pubspec.yaml └── test ├── helpers.dart ├── helpers ├── helpers.dart └── set_screen_size.dart ├── properties ├── custom_propertis │ ├── custom_property_anonymous_builder_test.dart │ └── custom_property_test.dart ├── list_property_test.dart ├── options_property_test.dart └── text_property_test.dart └── widget ├── actions_list_test.dart ├── chapter_info_test.dart ├── device_dialog_test.dart ├── device_preview_test.dart ├── stories_list_test.dart └── widget_test.dart /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bricks/dashbook_gallery/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0 2 | 3 | - feat: initial release 🎉 4 | -------------------------------------------------------------------------------- /bricks/dashbook_gallery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/LICENSE -------------------------------------------------------------------------------- /bricks/dashbook_gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/README.md -------------------------------------------------------------------------------- /bricks/dashbook_gallery/__brick__/gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/__brick__/gallery/README.md -------------------------------------------------------------------------------- /bricks/dashbook_gallery/__brick__/gallery/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/__brick__/gallery/analysis_options.yaml -------------------------------------------------------------------------------- /bricks/dashbook_gallery/__brick__/gallery/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/__brick__/gallery/lib/main.dart -------------------------------------------------------------------------------- /bricks/dashbook_gallery/__brick__/gallery/lib/widgets/text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/__brick__/gallery/lib/widgets/text.dart -------------------------------------------------------------------------------- /bricks/dashbook_gallery/__brick__/gallery/lib/widgets/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'text.dart'; 2 | -------------------------------------------------------------------------------- /bricks/dashbook_gallery/__brick__/gallery/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/__brick__/gallery/pubspec.yaml -------------------------------------------------------------------------------- /bricks/dashbook_gallery/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/bricks/dashbook_gallery/brick.yaml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/main_without_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/lib/main_without_theme.dart -------------------------------------------------------------------------------- /example/lib/properties/date_time_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/lib/properties/date_time_property.dart -------------------------------------------------------------------------------- /example/lib/stories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/lib/stories.dart -------------------------------------------------------------------------------- /example/lib/text_story.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/lib/text_story.dart -------------------------------------------------------------------------------- /example/lib/widgets/message_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/lib/widgets/message_card.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /lib/dashbook.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/dashbook.dart -------------------------------------------------------------------------------- /lib/src/decorator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/decorator.dart -------------------------------------------------------------------------------- /lib/src/device_size_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/device_size_extension.dart -------------------------------------------------------------------------------- /lib/src/platform_utils/mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/platform_utils/mobile.dart -------------------------------------------------------------------------------- /lib/src/platform_utils/platform_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/platform_utils/platform_utils.dart -------------------------------------------------------------------------------- /lib/src/platform_utils/unsupported.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/platform_utils/unsupported.dart -------------------------------------------------------------------------------- /lib/src/platform_utils/web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/platform_utils/web.dart -------------------------------------------------------------------------------- /lib/src/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/preferences.dart -------------------------------------------------------------------------------- /lib/src/story.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/story.dart -------------------------------------------------------------------------------- /lib/src/story_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/story_util.dart -------------------------------------------------------------------------------- /lib/src/widgets/actions_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/actions_container.dart -------------------------------------------------------------------------------- /lib/src/widgets/dashbook_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/dashbook_icon.dart -------------------------------------------------------------------------------- /lib/src/widgets/device_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/device_preview.dart -------------------------------------------------------------------------------- /lib/src/widgets/device_settings_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/device_settings_container.dart -------------------------------------------------------------------------------- /lib/src/widgets/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/helpers.dart -------------------------------------------------------------------------------- /lib/src/widgets/intructions_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/intructions_dialog.dart -------------------------------------------------------------------------------- /lib/src/widgets/keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/keys.dart -------------------------------------------------------------------------------- /lib/src/widgets/link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/link.dart -------------------------------------------------------------------------------- /lib/src/widgets/preview_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/preview_container.dart -------------------------------------------------------------------------------- /lib/src/widgets/properties_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/properties_container.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/bool_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/bool_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/border_radius_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/border_radius_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/color_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/color_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/edge_insets_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/edge_insets_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/list_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/list_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/number_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/number_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/options_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/options_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/properties.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/properties.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/slider_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/slider_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/text_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/text_property.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/widgets/property_4_integer_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/widgets/property_4_integer_form.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/widgets/property_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/widgets/property_dialog.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/widgets/property_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/widgets/property_scaffold.dart -------------------------------------------------------------------------------- /lib/src/widgets/property_widgets/widgets/title_with_tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/property_widgets/widgets/title_with_tooltip.dart -------------------------------------------------------------------------------- /lib/src/widgets/select_device/components/device_dropdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/select_device/components/device_dropdown.dart -------------------------------------------------------------------------------- /lib/src/widgets/select_device/components/text_scale_factor_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/select_device/components/text_scale_factor_slider.dart -------------------------------------------------------------------------------- /lib/src/widgets/select_device/custom_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/select_device/custom_device.dart -------------------------------------------------------------------------------- /lib/src/widgets/select_device/device_dialog_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/select_device/device_dialog_buttons.dart -------------------------------------------------------------------------------- /lib/src/widgets/select_device/device_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/select_device/device_settings.dart -------------------------------------------------------------------------------- /lib/src/widgets/select_device/select_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/select_device/select_device.dart -------------------------------------------------------------------------------- /lib/src/widgets/side_bar_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/side_bar_panel.dart -------------------------------------------------------------------------------- /lib/src/widgets/stories_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/stories_list.dart -------------------------------------------------------------------------------- /lib/src/widgets/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/lib/src/widgets/widget.dart -------------------------------------------------------------------------------- /media/dashbook-logo-typo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/media/dashbook-logo-typo.png -------------------------------------------------------------------------------- /media/dashbook-logo-typo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/media/dashbook-logo-typo.svg -------------------------------------------------------------------------------- /media/dashbook-logo.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/media/dashbook-logo.afdesign -------------------------------------------------------------------------------- /media/dashbook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/media/dashbook-logo.png -------------------------------------------------------------------------------- /media/dashbook-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/media/dashbook-logo.svg -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/helpers.dart -------------------------------------------------------------------------------- /test/helpers/helpers.dart: -------------------------------------------------------------------------------- 1 | export 'set_screen_size.dart'; 2 | -------------------------------------------------------------------------------- /test/helpers/set_screen_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/helpers/set_screen_size.dart -------------------------------------------------------------------------------- /test/properties/custom_propertis/custom_property_anonymous_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/properties/custom_propertis/custom_property_anonymous_builder_test.dart -------------------------------------------------------------------------------- /test/properties/custom_propertis/custom_property_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/properties/custom_propertis/custom_property_test.dart -------------------------------------------------------------------------------- /test/properties/list_property_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/properties/list_property_test.dart -------------------------------------------------------------------------------- /test/properties/options_property_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/properties/options_property_test.dart -------------------------------------------------------------------------------- /test/properties/text_property_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/properties/text_property_test.dart -------------------------------------------------------------------------------- /test/widget/actions_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/widget/actions_list_test.dart -------------------------------------------------------------------------------- /test/widget/chapter_info_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/widget/chapter_info_test.dart -------------------------------------------------------------------------------- /test/widget/device_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/widget/device_dialog_test.dart -------------------------------------------------------------------------------- /test/widget/device_preview_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/widget/device_preview_test.dart -------------------------------------------------------------------------------- /test/widget/stories_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/widget/stories_list_test.dart -------------------------------------------------------------------------------- /test/widget/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluefireteam/dashbook/HEAD/test/widget/widget_test.dart --------------------------------------------------------------------------------