Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<Shell
x:Class="_6002CEM.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:_6002CEM.Views"
xmlns:local="clr-namespace:_6002CEM"
Shell.FlyoutBehavior="Disabled">
<ShellContent
Title="LoginPage"
ContentTemplate="{DataTemplate pages:LoginPage}"
Route="LoginPage" />
<TabBar Route="mainapp">
<Tab
Title="MovieView"
Route="MovieView">
<ShellContent ContentTemplate="{DataTemplate pages:MoviesView}"/>
</Tab>
<Tab
Title="MovieDetailView"
Route="MovieDetailView">
<ShellContent ContentTemplate="{DataTemplate pages:MovieDetailView}"/>
</Tab>
</TabBar>
</Shell>