Skip to content
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

[Bug] NavigationService -Footer navigation doesn't work #27

Closed
RolandBuchholz opened this issue Apr 27, 2024 · 1 comment
Closed

[Bug] NavigationService -Footer navigation doesn't work #27

RolandBuchholz opened this issue Apr 27, 2024 · 1 comment

Comments

@RolandBuchholz
Copy link

RolandBuchholz commented Apr 27, 2024

It is not possible to navigate to a FooterNavigationViewItem.
The problem is that JsonNavigationViewService only returns the MenuItems,
the FooterMenuItems are not returned.
IList<object>? MenuItems => _navigationView?.MenuItems;
This means that only the MenuItems are configured in ConfigPages.

    private void ConfigPages()
    {
        _pageService.GetPages(MenuItems);

It would be conceivable to also integrate the FooterItems into ConfigPages.
Either the IList<object>? MenuItems also contains the FooterItems,
or an additional IList<object>? FooterMenuItems which is then processed by the ConfigPages.

@RolandBuchholz RolandBuchholz changed the title NavigationService -Footer navigation doesn't work [bug] NavigationService -Footer navigation doesn't work Apr 27, 2024
@RolandBuchholz RolandBuchholz changed the title [bug] NavigationService -Footer navigation doesn't work [Bug] NavigationService -Footer navigation doesn't work Apr 27, 2024
@ghost1372
Copy link
Contributor

ghost1372 commented Apr 27, 2024

Thanks @RolandBuchholz
Fixed in 3fcc078

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants