-
Notifications
You must be signed in to change notification settings - Fork 9
Example app cleanup #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
# Conflicts: # example/lib/basemap_style_example_page.dart
# Conflicts: # example/lib/basemap_style_example_page.dart
example/lib/main.dart
Outdated
_buildTile( | ||
title: "Export Image Example", | ||
onTap: () { | ||
_navigateTo(context, ExportImageExamplePage()); | ||
}, | ||
), | ||
_buildTile( | ||
title: "Location Indicator Example", | ||
onTap: () { | ||
_navigateTo(context, LocationIndicatorExamplePage()); | ||
}, | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those features are not available on web, let's only show that on mobile 🤔
body: Stack( | ||
drawer: isLargeScreen | ||
? null | ||
: NavigationDrawer(children: _buildTiles(context)), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then resizing the window on web you can see that the navbar can be opened but its already visible:
No description provided.