0

Xamarin.Forms プロジェクトを開始しました。TappedBage を表示する必要がありますが、タブ バーは Android のページの上部ではなく下部にあります。次のライブラリhttps://github.com/thrive-now/BottomNavigationBarXFはまさに私が探しているものです。

Portable プロジェクトへの参照を追加しました。ページは表示されますが、バーはページの上部に表示されたままです。

コンパイル エラーはありませんが、動作は標準の TabbedPage のものです。

何か不足していますか?

<xf:BottomBarPage xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         xmlns:local="clr-namespace:TestApp"
         xmlns:xf="clr-namespace:BottomBar.XamarinForms;assembly=BottomBar.XamarinForms"
         x:Class="TestApp.MainPageBottomTab">
<xf:BottomBarPage.Children>
    <local:Page1 />
    <local:Page2 />
    <local:Page3 />
</xf:BottomBarPage.Children>

ありがとう

4

1 に答える 1

0

Nugget パッケージに依存関係 "BottomNavigationBar" がありませんでした。

于 2017-11-17T09:22:59.110 に答える