|
|
@ -1,9 +1,9 @@
|
|
|
|
import 'package:dashbook/dashbook.dart';
|
|
|
|
import 'package:dashbook/dashbook.dart';
|
|
|
|
import 'package:sandbox/common/common.dart';
|
|
|
|
import 'package:sandbox/common/common.dart';
|
|
|
|
import 'package:sandbox/stories/flutter_forest/big_dash_bumper_game.dart';
|
|
|
|
import 'package:sandbox/stories/flutter_forest/dash_bumper_a_game.dart';
|
|
|
|
|
|
|
|
import 'package:sandbox/stories/flutter_forest/dash_bumper_b_game.dart';
|
|
|
|
|
|
|
|
import 'package:sandbox/stories/flutter_forest/dash_bumper_main_game.dart';
|
|
|
|
import 'package:sandbox/stories/flutter_forest/signpost_game.dart';
|
|
|
|
import 'package:sandbox/stories/flutter_forest/signpost_game.dart';
|
|
|
|
import 'package:sandbox/stories/flutter_forest/small_dash_bumper_a_game.dart';
|
|
|
|
|
|
|
|
import 'package:sandbox/stories/flutter_forest/small_dash_bumper_b_game.dart';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void addFlutterForestStories(Dashbook dashbook) {
|
|
|
|
void addFlutterForestStories(Dashbook dashbook) {
|
|
|
|
dashbook.storiesOf('Flutter Forest')
|
|
|
|
dashbook.storiesOf('Flutter Forest')
|
|
|
@ -14,17 +14,17 @@ void addFlutterForestStories(Dashbook dashbook) {
|
|
|
|
)
|
|
|
|
)
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Big Dash Bumper',
|
|
|
|
title: 'Big Dash Bumper',
|
|
|
|
description: BigDashBumperGame.description,
|
|
|
|
description: DashBumperMainGame.description,
|
|
|
|
gameBuilder: (_) => BigDashBumperGame(),
|
|
|
|
gameBuilder: (_) => DashBumperMainGame(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Small Dash Bumper A',
|
|
|
|
title: 'Small Dash Bumper A',
|
|
|
|
description: SmallDashBumperAGame.description,
|
|
|
|
description: DashBumperAGame.description,
|
|
|
|
gameBuilder: (_) => SmallDashBumperAGame(),
|
|
|
|
gameBuilder: (_) => DashBumperAGame(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
..addGame(
|
|
|
|
..addGame(
|
|
|
|
title: 'Small Dash Bumper B',
|
|
|
|
title: 'Small Dash Bumper B',
|
|
|
|
description: SmallDashBumperBGame.description,
|
|
|
|
description: DashBumperBGame.description,
|
|
|
|
gameBuilder: (_) => SmallDashBumperBGame(),
|
|
|
|
gameBuilder: (_) => DashBumperBGame(),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|