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
<?xml version="1.0" encoding="utf-8" ?>
<Shell xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EventsExplorer.AppShell"
xmlns:view="clr-namespace:EventsExplorer.View"
FlyoutBehavior="Disabled">
<Shell.Resources>
<ResourceDictionary>
<Style x:Key="BaseStyle" TargetType="Element">
<Setter Property="Shell.BackgroundColor" Value="{StaticResource Primary}" />
<Setter Property="Shell.ForegroundColor" Value="{OnPlatform WinUI={StaticResource Primary}, Default=White}" />
<Setter Property="Shell.TitleColor" Value="White" />
<Setter Property="Shell.DisabledColor" Value="#B4FFFFFF" />
<Setter Property="Shell.UnselectedColor" Value="#95000000" />
<Setter Property="Shell.TabBarBackgroundColor" Value="{StaticResource Background}" />
<Setter Property="Shell.TabBarForegroundColor" Value="{StaticResource BackgroundDark}" />
<Setter Property="Shell.TabBarUnselectedColor" Value="#95000000" />
<Setter Property="Shell.TabBarTitleColor" Value="{StaticResource BackgroundDark}" />
</Style>
<Style BasedOn="{StaticResource BaseStyle}" TargetType="ShellItem" ApplyToDerivedTypes="True" />
</ResourceDictionary>
</Shell.Resources>
<ShellContent
Shell.NavBarIsVisible="true"
Title="Events"
ContentTemplate="{DataTemplate view:MainPage}"
Route="MainPage" />
</Shell>