root / GES_PAC / View / MainView.xaml @ 0a91fd76
Historique | Voir | Annoter | Télécharger (1,355 ko)
1 | 65ad7e66 | Lucas Bihannic | <?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 | xmlns:vm="clr-namespace:GES_PAC.ViewModel" |
||
5 | x:Class="GES_PAC.View.MainView" |
||
6 | x:DataType="vm:MainViewModel"> |
||
7 | |||
8 | <VerticalStackLayout Padding="20" Spacing="25" |
||
9 | VerticalOptions="CenterAndExpand" |
||
10 | HorizontalOptions="Center"> |
||
11 | |||
12 | <Label Text="Bonjour" |
||
13 | FontSize="22" |
||
14 | FontAttributes="Bold" |
||
15 | HorizontalOptions="Center"/> |
||
16 | |||
17 | <Label Text="Pas de journée disponible" |
||
18 | FontSize="18" |
||
19 | TextColor="Gray" |
||
20 | HorizontalOptions="Center"/> |
||
21 | |||
22 | <Label Text="Créez une journée pour commencer" |
||
23 | FontSize="16" |
||
24 | HorizontalOptions="Center" |
||
25 | TextColor="Black" |
||
26 | Padding="10"/> |
||
27 | |||
28 | <Button Text="Créer une journée" |
||
29 | BackgroundColor="Green" |
||
30 | TextColor="White" |
||
31 | CornerRadius="10" |
||
32 | Padding="15" |
||
33 | FontSize="18" |
||
34 | HorizontalOptions="Center" |
||
35 | WidthRequest="220" |
||
36 | Command="{Binding GoToCreateDayCommand}"/> |
||
37 | |||
38 | </VerticalStackLayout>
|
||
39 | |||
40 | </ContentPage> |