I'm Looking to create two tabbed page without any icon. But it getting placed in bottom of the tab area enter image description here
I'm Expecting my tab title to be placed center if there is no image. Below is the code I used.
<TabbedPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Awakee.HomePage"
xmlns:p="clr-namespace:Awakee.Views"
xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls"
android:TabbedPage.ToolbarPlacement="Bottom"
BarBackgroundColor="Grey">
<p:AddNewAwake Title="Add New" StyleClass=""/>
<p:UpcomingAwake Title="Upcoming"/>
</TabbedPage>
If you have the luxury to use a plugin that performs better and has many cool features, check Sharpnado.Tabs It is the best tabs library out there for Tabs
With a TabsHostView that hosts your tab and a ViewSwitcher that switches between available views its a full pack solution
Checkout their Readme for more information:
https://github.com/roubachof/Sharpnado.Tabs/blob/main/README.md
On the other hand, if you want to go ahead with TabbedPage then you will have to write a handler that handles this, you can follow this for more information
How to center Tabbed Page Tab Icons and/or text in XAML?
Modify TabbedPage Bar with handler in .NET Maui (Android)