-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
67 lines (57 loc) · 1.94 KB
/
AppShell.xaml
File metadata and controls
67 lines (57 loc) · 1.94 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="KseF.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:KseF.Pages"
Shell.FlyoutBehavior="Flyout"
BackgroundColor="#502bd4"
Title="KseF">
<Shell.FlyoutHeader>
<Grid BackgroundColor="LightGray" Padding="10">
<Label Text="Nagłówek"
FontSize="24"
HorizontalOptions="Center"
VerticalOptions="Center"
TextColor="Black" />
</Grid>
</Shell.FlyoutHeader>
<Shell.TitleView>
<Grid>
<Label Text="PpInzKsef_v0.9"
FontSize="24"
FontAttributes="Bold"
TextColor="White"
Padding="10"/>
</Grid>
</Shell.TitleView>
<ShellContent
Title="Strona główna"
ContentTemplate="{DataTemplate pages:MainPage }"
Route="MainPage" />
<ShellContent
Title="Moje firmy"
ContentTemplate="{DataTemplate pages:MyBusinessEntitiesPage }"
Route="MyCompanyPage" />
<ShellContent
Title="Klienci"
ContentTemplate="{DataTemplate pages:MyClientsPage}"
Route="MyCLientsPage" />
<ShellContent
Title="Produkty i usługi"
ContentTemplate="{DataTemplate pages:MyProductsPage}"
Route="MyProducts" />
<ShellContent
Title="Wysłane faktury"
ContentTemplate="{DataTemplate pages:InvoicesSent}"
Route="InvoicesSentPage" />
<Shell.FlyoutFooter>
<StackLayout Padding="10" BackgroundColor="LightGray">
<Label Text="Przemysław Przybyszewski 2024"
HorizontalOptions="Center"
VerticalOptions="Center"
FontSize="8"
TextColor="Black" />
</StackLayout>
</Shell.FlyoutFooter>
</Shell>