-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathAppShell.xaml
45 lines (38 loc) · 1.79 KB
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="Aila.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Aila"
Shell.FlyoutBehavior="Flyout"
Title="AiLa - One question,multi-AI reply.">
<Shell.Resources>
<ResourceDictionary>
<Style TargetType="Label">
<Setter Property="FontSize" Value="Large" />
</Style>
</ResourceDictionary>
</Shell.Resources>
<Shell.FlyoutHeader>
<StackLayout Padding="10" Margin="0" HeightRequest="80"> <!-- Adjusted Padding & Margin -->
<Label Text="🔺AiLa v1.0🔻" HorizontalOptions="Center" VerticalOptions="Center" />
</StackLayout>
</Shell.FlyoutHeader>
<Shell.FlyoutFooter>
<StackLayout Padding="10">
<Label Text="🟢wechat(微信):stoeng" HorizontalOptions="Start" VerticalOptions="Center" />
<Label Text="🟢email:️[email protected]" HorizontalOptions="Start" VerticalOptions="Center" />
<Label Text="🟢哔哩哔哩:AI超元域" HorizontalOptions="Start" VerticalOptions="Center" />
<Label Text="🟢YouTube:AI超元域" HorizontalOptions="Start" VerticalOptions="Center" />
</StackLayout>
</Shell.FlyoutFooter>
<FlyoutItem Title="➣🏠 Home">
<ShellContent Route="home" ContentTemplate="{DataTemplate local:MainPage}" />
</FlyoutItem>
<FlyoutItem Title="➣⚙️ Settings">
<ShellContent Route="setting" ContentTemplate="{DataTemplate local:SettingPage}" />
</FlyoutItem>
<FlyoutItem Title="➣🔐️ Config File">
<ShellContent Route="config" ContentTemplate="{DataTemplate local:ConfigPage}" />
</FlyoutItem>
</Shell>