Skip to content

Commit

Permalink
fix: [NO-TASK] Add routing dependency (#283)
Browse files Browse the repository at this point in the history
Co-authored-by: BirgittMajas <79840500+BirgittMajas@users.noreply.github.com>
  • Loading branch information
GittHub-d and GittHub-d committed Oct 30, 2023
1 parent 3aabd2b commit 1f396a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/lib/src/storybook/routing/routing_error_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class RoutingErrorWidget extends StatelessWidget {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
FadeInImage.memoryNetwork(
FadeInImage(
height: 200,
placeholder: kTransparentImage,
image: 'assets/images/url_error.jpg',
placeholder: MemoryImage(kTransparentImage),
image: const AssetImage('assets/images/url_error.jpg'),
),
Text(
'Lost in space',
Expand Down
1 change: 1 addition & 0 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies:
flutter_svg: ^2.0.1
flutter_web_plugins:
sdk: flutter
go_router: ^12.0.1
moon_design:
path: ../
moon_icons: any
Expand Down

0 comments on commit 1f396a5

Please sign in to comment.