sicpaconnexions / SICPA_Connexions / View / AboutView.xaml @ 03682d21
Historique | Voir | Annoter | Télécharger (1,374 ko)
1 |
<?xml version="1.0" encoding="utf-8" ?>
|
---|---|
2 |
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
4 |
x:Class="SICPA_Connexions.View.AboutView" |
5 |
Title="About"> |
6 |
<StackLayout BackgroundColor="{StaticResource InraePrimary}" Spacing="0"> |
7 |
<ScrollView>
|
8 |
<StackLayout Spacing="0"> |
9 |
<StackLayout
|
10 |
Margin="10" |
11 |
HorizontalOptions="FillAndExpand" |
12 |
VerticalOptions="FillAndExpand"> |
13 |
<Frame HorizontalOptions="FillAndExpand" |
14 |
VerticalOptions="FillAndExpand" CornerRadius="5"> |
15 |
|
16 |
<StackLayout>
|
17 |
<Frame BorderColor="{StaticResource InraePrimary}" Margin="0,0,0,20"> |
18 |
<Label
|
19 |
Text="About..." |
20 |
VerticalOptions="Center" |
21 |
HorizontalOptions="Center" |
22 |
Style="{StaticResource textTitre}"/> |
23 |
</Frame>
|
24 |
</StackLayout>
|
25 |
</Frame>
|
26 |
</StackLayout>
|
27 |
</StackLayout>
|
28 |
</ScrollView>
|
29 |
</StackLayout>
|
30 |
</ContentPage>
|