inraetemplate / INRAETemplate / View / SettingsView.xaml @ fa2aa88f
Historique | Voir | Annoter | Télécharger (1,381 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="INRAETemplate.View.SettingsView" |
5 |
Title="Settings"> |
6 |
|
7 |
<StackLayout BackgroundColor="{StaticResource InraePrimary}" Spacing="0"> |
8 |
<ScrollView>
|
9 |
<StackLayout Spacing="0"> |
10 |
<StackLayout
|
11 |
Margin="10" |
12 |
HorizontalOptions="FillAndExpand" |
13 |
VerticalOptions="FillAndExpand"> |
14 |
<Frame HorizontalOptions="FillAndExpand" |
15 |
VerticalOptions="FillAndExpand" CornerRadius="5"> |
16 |
|
17 |
<StackLayout>
|
18 |
<Frame BorderColor="{StaticResource InraePrimary}" Margin="0,0,0,20"> |
19 |
<Label
|
20 |
Text="Settings" |
21 |
VerticalOptions="Center" |
22 |
HorizontalOptions="Center" |
23 |
Style="{StaticResource textTitre}"/> |
24 |
</Frame>
|
25 |
</StackLayout>
|
26 |
</Frame>
|
27 |
</StackLayout>
|
28 |
</StackLayout>
|
29 |
</ScrollView>
|
30 |
</StackLayout>
|
31 |
|
32 |
</ContentPage>
|