-
Notifications
You must be signed in to change notification settings - Fork 72
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
Add Coffee Maker Demo App example with navigator 2.0 (Flutter Full Stack Conference) #209
Conversation
Add Navigator 2 demo app for coffee maker Add demo app for navigator 2 talk
const Align( | ||
alignment: AlignmentDirectional.topStart, | ||
child: Padding( | ||
padding: EdgeInsets.all(16.0), | ||
child: DrawerMenuButton(), | ||
), | ||
), |
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.
Align( | ||
alignment: AlignmentDirectional.topStart, | ||
child: Padding( | ||
padding: const EdgeInsets.all(16.0), | ||
child: BackButton( | ||
style: ButtonStyle( | ||
backgroundColor: | ||
MaterialStateProperty.all(Colors.white), | ||
), | ||
onPressed: Navigator.of(context).pop, | ||
), | ||
), | ||
), |
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.
Also this BackButton need SafeArea
Visit the preview URL for this PR (updated for commit 6dcc541):
(expires Tue, 04 Jun 2024 13:07:56 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 906758393beb0353b979d020649d6a1efc40fb5b |
Description
This PR adds the demo app for showing how to use Navigator 2.0 with MVVM.
Related Issues
Replace this paragraph with a list of issues related to this PR from the issue database. Indicate, which of these issues are resolved or fixed by this PR.
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
).This will ensure a smooth and quick review process.
///
).melos run analyze
) does not report any problems on my PR.Breaking Change
Does your PR require plugin users to manually update their apps to accommodate your change?