We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
You can use it in the new page, and click the page again after clicking the tab to expand it will automatically exit. why is that?
The code in the usage example is as follows: NavigationView( appBar: const NavigationAppBar( title: Text('NavigationView'), ), pane: NavigationPane( selected: topIndex, onChanged: (index) => setState(() => topIndex = index), displayMode: displayMode, items: [ PaneItem( icon: const Icon(FluentIcons.home), title: const Text('Home'), body: BodyItem(), ), PaneItem( icon: const Icon(FluentIcons.issue_tracking), title: const Text('Track an order'), infoBadge: const InfoBadge(source: Text('8')), body: BodyItem(), ), PaneItemExpander( icon: const Icon(FluentIcons.account_management), title: const Text('Account'), body: BodyItem(), items: [ PaneItem( icon: const Icon(FluentIcons.mail), title: const Text('Mail'), body: BodyItem(), ), PaneItem( icon: const Icon(FluentIcons.calendar), title: const Text('Calendar'), body: BodyItem(), ), ], ), ], ), )
NavigationView( appBar: const NavigationAppBar( title: Text('NavigationView'), ), pane: NavigationPane( selected: topIndex, onChanged: (index) => setState(() => topIndex = index), displayMode: displayMode, items: [ PaneItem( icon: const Icon(FluentIcons.home), title: const Text('Home'), body: BodyItem(), ), PaneItem( icon: const Icon(FluentIcons.issue_tracking), title: const Text('Track an order'), infoBadge: const InfoBadge(source: Text('8')), body: BodyItem(), ), PaneItemExpander( icon: const Icon(FluentIcons.account_management), title: const Text('Account'), body: BodyItem(), items: [ PaneItem( icon: const Icon(FluentIcons.mail), title: const Text('Mail'), body: BodyItem(), ), PaneItem( icon: const Icon(FluentIcons.calendar), title: const Text('Calendar'), body: BodyItem(), ), ], ), ], ), )
The text was updated successfully, but these errors were encountered:
Hi! What version are you using? This should have been fixed by 4.3.0 actually.
Sorry, something went wrong.
#707
No branches or pull requests
Describe the bug
You can use it in the new page, and click the page again after clicking the tab to expand it will automatically exit. why is that?
The code in the usage example is as follows:
NavigationView( appBar: const NavigationAppBar( title: Text('NavigationView'), ), pane: NavigationPane( selected: topIndex, onChanged: (index) => setState(() => topIndex = index), displayMode: displayMode, items: [ PaneItem( icon: const Icon(FluentIcons.home), title: const Text('Home'), body: BodyItem(), ), PaneItem( icon: const Icon(FluentIcons.issue_tracking), title: const Text('Track an order'), infoBadge: const InfoBadge(source: Text('8')), body: BodyItem(), ), PaneItemExpander( icon: const Icon(FluentIcons.account_management), title: const Text('Account'), body: BodyItem(), items: [ PaneItem( icon: const Icon(FluentIcons.mail), title: const Text('Mail'), body: BodyItem(), ), PaneItem( icon: const Icon(FluentIcons.calendar), title: const Text('Calendar'), body: BodyItem(), ), ], ), ], ), )
The text was updated successfully, but these errors were encountered: