Statistiques
| Branche: | Révision:

inraetemplate / INRAETemplate / View / SettingsView.xaml @ 7b67ff55

Historique | Voir | Annoter | Télécharger (1,488 ko)

1 fa2aa88f ajournaux
<?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 7b67ff55 ajournaux
             xmlns:tools="clr-namespace:INRAETemplate.View.Tools"
6 fa2aa88f ajournaux
             Title="Settings">
7
8
    <StackLayout BackgroundColor="{StaticResource InraePrimary}" Spacing="0">
9 7b67ff55 ajournaux
        <tools:ConnectionIndicatorView />
10 fa2aa88f ajournaux
        <ScrollView>
11
            <StackLayout Spacing="0">
12
                <StackLayout
13
                        Margin="10"
14
                        HorizontalOptions="FillAndExpand"
15
                        VerticalOptions="FillAndExpand">
16
                    <Frame HorizontalOptions="FillAndExpand"
17
                               VerticalOptions="FillAndExpand" CornerRadius="5">
18
19
                        <StackLayout>
20
                            <Frame BorderColor="{StaticResource InraePrimary}" Margin="0,0,0,20">
21
                                <Label 
22
                                        Text="Settings"
23
                                        VerticalOptions="Center" 
24
                                        HorizontalOptions="Center"
25
                                        Style="{StaticResource textTitre}"/>
26
                            </Frame>
27
                        </StackLayout>
28
                    </Frame>
29
                </StackLayout>
30
            </StackLayout>
31
        </ScrollView>
32
    </StackLayout>
33
34
</ContentPage>