I created a new MAUI app in Visual Studio with the default application. I am trying to add a TabBar at the bottom but it is always appearing at the top (see screenshot). All the examples I have seen and documentation I have read indicate it should be at the bottom. What am I doing wrong? This is on Windows.
Here is the AppShell.xaml
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="letseat.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:letseat"
>
<TabBar Route="Home">
<Tab Icon="dotnet_bot.png" Title="Main">
<ShellContent ContentTemplate="{DataTemplate local:MainPage}"/>
</Tab>
<Tab Icon="dotnet_bot.png" Title="Profile">
<ShellContent ContentTemplate="{DataTemplate local:ProfilePage}"/>
</Tab>
<Tab Icon="dotnet_bot.png" Title="Test">
<ShellContent ContentTemplate="{DataTemplate local:ProfilePage}"/>
</Tab>
</TabBar>
</Shell>
And the result screenshot