-
-
Notifications
You must be signed in to change notification settings - Fork 465
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
Help with navigation #146
Comments
|
Is there AppTheme inside fluent_ui or do I have to implement?? |
https://github.com/bdlukaa/fluent_ui/blob/master/example/lib/theme.dart or set |
It's the default platform behavior. When in compact mode, the user can press the button to open it. If the screen is too small, it's still opened as an overlay. You can see this behavior on multiple native windows apps, and on XAML Gallery, in which this library is based on. To disable the button, use the NavigationPane(
...,
menuButton: const SizedBox.shrink(),
...,
); |
Ok thanks, I got it |
How do I set default to expand in compact?
And prevent auto collapsing?
The text was updated successfully, but these errors were encountered: