-
-
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
Remove back button from NavigationPane #74
Comments
Which back button? There isn't any back button on |
That's weird. This is what i am seeing. Followed by the code NavigationView(
contentShape: RoundedRectangleBorder(),
pane: NavigationPane(
menuButton: SizedBox(),
selected: _tabIndex,
header: Padding(
padding: const EdgeInsets.only(bottom: 4.0),
child: Text("Header",
style: FluentTheme.of(context)
.typography
.bodyLarge!
.copyWith(fontWeight: FontWeight.bold)),
),
items: [
PaneItem(icon: Text("Item 1")),
PaneItem(icon: Text("Item 2")),
PaneItem(icon: Text("Item 3")),
],
footerItems: [
PaneItem(icon: Text("FooterItem 1")),
],
onChanged: (i) => setState(() => _tabIndex = i),
displayMode: PaneDisplayMode.top,
),
content: NavigationBody(index: _tabIndex, children: [
Container(),
Container(),
Container(),
]),
); |
That's true! The back button is added when the top mode is selected.
I'll fix it! |
WinXaito
pushed a commit
to WinXaito/fluent_ui
that referenced
this issue
Nov 28, 2021
dev-hann
added a commit
to dev-hann/fluent_ui
that referenced
this issue
Sep 18, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can't find a way to remove the back button from the NavigationPane. Seems like it is implemented for NavigationAppBar, but not for NavigationPane. Can you please add this functionality?
The text was updated successfully, but these errors were encountered: