NAXAM/bottomtabbedpage-xamarin-forms

Failed to resolve assembly

pulga98 opened this issue · 3 comments

Hello. I implemented your code and it works when the page is a BottomTabbedPage.
I want to use it inside a MasterDetailPage, so I have side menu and bottom menu, which is what i'm doing BottomNavigationBarXF (that package is outdated).

When I try to set BottomTabbedPage as MasterDetailPage.Detail I get this error:
Error: Failed to resolve assembly: 'Naxam.Controls.Forms, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'

Here is my code:

<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:Panorama"
             xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core" 
             ios:Page.UseSafeArea="true" 
             xmlns:naxam="clr-namespace:Naxam.Controls.Forms;assembly=Naxam.Controls.Forms"
             x:Class="Panorama.Menus.Monitoring">
    <MasterDetailPage.ToolbarItems>
        <ToolbarItem Icon="puzzle.png"></ToolbarItem>
    </MasterDetailPage.ToolbarItems>
    <!--#region Master -->
    <MasterDetailPage.Master>
        <local:MasterPage/>
    </MasterDetailPage.Master>
    <!--#endregion-->

    <!--#region Detail -->
    <MasterDetailPage.Detail>
                <!--#region Bottom menu-->
                <!--Bottom bar menu-->
                <naxam:BottomTabbedPage></naxam:BottomTabbedPage>
                <!--#endregion-->
    </MasterDetailPage.Detail>
    <!--#endregion-->

    </MasterDetailPage>

Hey,

You used wrongly assembly name.

xmlns:naxam="clr-namespace:Naxam.Controls.Forms;assembly=Naxam.Controls.Forms"

Cheers.

Thank you for the response. So what is the correct assembly name? I used it when i created a test page and it worked fine...

Regards

There is an replace error for the guide in readme.
Naxam.BottomTabbedPage.Forms