Add some new lint rules (#1117)

This commit is contained in:
Luan Nico
2021-11-18 10:35:10 -05:00
committed by GitHub
parent b89839c894
commit 03128170bd
16 changed files with 47 additions and 49 deletions

View File

@ -5,11 +5,10 @@ import '../../commons/commons.dart';
import 'pause_resume_game.dart';
void addSystemStories(Dashbook dashbook) {
dashbook.storiesOf('System')
..add(
'Pause/resume engine',
(_) => GameWidget(game: PauseResumeGame()),
codeLink: baseLink('system/pause_resume_game.dart'),
info: PauseResumeGame.info,
);
dashbook.storiesOf('System').add(
'Pause/resume engine',
(_) => GameWidget(game: PauseResumeGame()),
codeLink: baseLink('system/pause_resume_game.dart'),
info: PauseResumeGame.info,
);
}