Work around Flutter bug for ColorEffect and fix broken links (#1178)

* Fix `ColorEffect` Flutter bug and example links

* Remove accidental code

* Fix `ColorEffect` test
This commit is contained in:
Lukas Klingsbo
2021-12-08 13:19:00 +01:00
committed by GitHub
parent b71c61be40
commit dec04f3335
8 changed files with 49 additions and 40 deletions

View File

@ -20,13 +20,13 @@ void addRenderingStories(Dashbook dashbook) {
..add(
'Isometric Tile Map',
(_) => GameWidget(game: IsometricTileMapExample()),
codeLink: baseLink('tile_maps/isometric_tile_map_example.dart'),
codeLink: baseLink('rendering/isometric_tile_map_example.dart'),
info: IsometricTileMapExample.description,
)
..add(
'Nine Tile Box',
(_) => GameWidget(game: NineTileBoxExample()),
codeLink: baseLink('utils/nine_tile_box_example.dart'),
codeLink: baseLink('rendering/nine_tile_box_example.dart'),
info: NineTileBoxExample.description,
)
..add(
@ -44,7 +44,7 @@ void addRenderingStories(Dashbook dashbook) {
..add(
'Particles',
(_) => GameWidget(game: ParticlesExample()),
codeLink: baseLink('utils/particles_example.dart'),
codeLink: baseLink('rendering/particles_example.dart'),
info: ParticlesExample.description,
);
}