gitextract_5bvqld56/ ├── .gitignore ├── BottomBar.Droid/ │ ├── BottomBar.Droid.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Renderers/ │ │ └── BottomBarPageRenderer.cs │ ├── Resources/ │ │ ├── AboutResources.txt │ │ └── values/ │ │ └── Strings.xml │ ├── Utils/ │ │ ├── IPageController.cs │ │ ├── MeasureSpecFactory.cs │ │ ├── PageController.cs │ │ ├── ReflectedProxy.cs │ │ └── ResourceManagerEx.cs │ └── packages.config ├── BottomBar.XamarinForms/ │ ├── BottomBar.XamarinForms.csproj │ ├── BottomBarPage.cs │ ├── BottomBarPageExtensions.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── packages.config ├── BottomBar.nuspec ├── BottomBarXF.sln ├── LICENSE ├── README.md ├── example/ │ ├── BottomBarXFExample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BottomBarXFExample.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── TabPage.xaml │ │ ├── TabPage.xaml.cs │ │ └── packages.config │ ├── BottomBarXFExample.Droid/ │ │ ├── Assets/ │ │ │ └── AboutAssets.txt │ │ ├── BottomBarXFExample.Droid.csproj │ │ ├── MainActivity.cs │ │ ├── Properties/ │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources/ │ │ │ ├── AboutResources.txt │ │ │ ├── layout/ │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── packages.config │ └── BottomBarXFExample.iOS/ │ ├── AppDelegate.cs │ ├── BottomBarXFExample.iOS.csproj │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Resources/ │ │ └── LaunchScreen.xib │ └── packages.config └── example-xaml/ ├── BottomBarXFExampleXaml/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── BarPage.xaml │ ├── BarPage.xaml.cs │ ├── BottomBarXFExampleXaml.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── TabPage.xaml │ ├── TabPage.xaml.cs │ └── packages.config └── BottomBarXFExampleXaml.Droid/ ├── Assets/ │ └── AboutAssets.txt ├── BottomBarXFExampleXaml.Droid.csproj ├── MainActivity.cs ├── Properties/ │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources/ │ ├── AboutResources.txt │ ├── layout/ │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ └── values/ │ ├── colors.xml │ └── styles.xml └── packages.config