// Copyright (c) 2022, Very Good Ventures // https://verygood.ventures // // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file or at // https://opensource.org/licenses/MIT. import 'package:dashbook/dashbook.dart'; import 'package:flutter/material.dart'; import 'package:sandbox/stories/effects/effects.dart'; import 'package:sandbox/stories/stories.dart'; void main() { final dashbook = Dashbook(theme: ThemeData.dark()); addBallStories(dashbook); addEffectsStories(dashbook); runApp(dashbook); }