Customize BottomNavigationView in MAUI

Ravindranath, Varun (Cognizant) 1 Reputation point
2022-10-09T21:31:58.973+00:00

I'm trying to customize the BottomNavigationView. I tried to access the BottomNavigationview by writing a TabbedPageHandler. The TabbedPageHandler returns the ViewPager2 control and there is no way to access the BottomNavigationView. Tried almost all handlers dont understand how this is possible. Another thing i tried was to hook up the Layout changed event and to access the nav view. The result was the page loads and the first focus on the page allows access to bottom Navigation view. Is this a bug in MAUI or what should i do to customize the view on page load.

I'm trying to set the icons on the tabbedpage. Not using Shell.

Developer technologies .NET .NET MAUI
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Yonglun Liu (Shanghai Wicresoft Co,.Ltd.) 50,126 Reputation points Microsoft External Staff
    2022-10-10T04:08:56.123+00:00

    Hello,

    I tried to access the BottomNavigationview by writing a TabbedPageHandler.

    Did you mean you used TabbedPageHandler to customize TabbedPage?

    If so, please refer to this issue: Move TabbedPageHandler to TabbedViewHandler #4893.

    I'm trying to set the icons on the tabbedpage. Not using Shell.

    In MAUI, it is simple to set icons without handler or renderer. Please refer to the following code:

       <TabbedPage ...>  
          <local:Main Title="test" IconImageSource="icons8.png"/>  
       </TabbedPage>  
    

    Best Regards,

    Alec Liu.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.