NAXAM / toptabbedpage-xamarin-forms

TopTabbedPage - A Xamarin.Forms page for showing tabs at top on iOS
Apache License 2.0
81 stars 24 forks source link

Page not showing in iOS #48

Open rensvmoorsel opened 3 years ago

rensvmoorsel commented 3 years ago

On android, it works fine. But in iOS, I don't see the pages and the tabbar. image I added this line to the app delegate file: TopTabbedRenderer.Init(); The code of the page is this: `<?xml version="1.0" encoding="utf-8" ?> <forms:TopTabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="PrimeFlex.Views.ReservationsOverviewTabManager" xmlns:views="clr-namespace:PrimeFlex.Views" xmlns:forms="clr-namespace:Naxam.Controls.Forms;assembly=Naxam.TopTabbedPage.Forms" BarTextColor="White" BarIndicatorColor="{StaticResource Primary}" BarBackgroundColor="{StaticResource Primary}" Title="Reservations overview">

<views:UsersReservationsPage Title="User overview" />

</forms:TopTabbedPage>`