-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
40 lines (38 loc) · 1.5 KB
/
AppShell.xaml
File metadata and controls
40 lines (38 loc) · 1.5 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="WorkshopUploader.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:l="clr-namespace:WorkshopUploader.Localization"
Title="GregTools Modmanager"
FlyoutBehavior="Disabled">
<Shell.TitleView>
<Grid Padding="0,0,12,0" HeightRequest="36" VerticalOptions="Center">
<Border
x:Name="SteamLogoTile"
Padding="10,4"
BackgroundColor="#0D3835"
StrokeThickness="0"
HorizontalOptions="End"
VerticalOptions="Center">
<Border.StrokeShape>
<RoundRectangle CornerRadius="6" />
</Border.StrokeShape>
<HorizontalStackLayout Spacing="6" VerticalOptions="Center">
<Ellipse
x:Name="SteamStatusLed"
WidthRequest="8"
HeightRequest="8"
VerticalOptions="Center" />
<Label
x:Name="SteamStatusText"
FontSize="11"
LineBreakMode="NoWrap"
Text="{l:Translate Key=Steam_Connecting}"
TextColor="#7FBFB8"
VerticalOptions="Center" />
</HorizontalStackLayout>
</Border>
</Grid>
</Shell.TitleView>
</Shell>