parent
bb4ca30e6f
commit
f910668cba
@ -1,115 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Trek_12.Views.PageConnexion"
|
||||
Title="PageConnexion">
|
||||
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<ScrollView Orientation="Vertical">
|
||||
<VerticalStackLayout BackgroundColor="AliceBlue">
|
||||
|
||||
<Label
|
||||
Text="Ceci est un bouton"
|
||||
TextColor="Black"
|
||||
BackgroundColor="DarkSalmon"
|
||||
HorizontalTextAlignment="Center"
|
||||
FontAttributes="Bold"
|
||||
Margin="20"
|
||||
Padding="15"
|
||||
/>
|
||||
|
||||
|
||||
<Button
|
||||
CornerRadius="20"
|
||||
Text="Rémi > Remi > Lucas"
|
||||
WidthRequest="300"
|
||||
HeightRequest="20"
|
||||
/>
|
||||
|
||||
<Label
|
||||
Text="Ceci est une scroll view d'images"
|
||||
TextColor="Black"
|
||||
BackgroundColor="DarkSalmon"
|
||||
HorizontalTextAlignment="Center"
|
||||
FontAttributes="Bold"
|
||||
Margin="20"
|
||||
Padding="15"
|
||||
/>
|
||||
|
||||
<ScrollView
|
||||
Orientation="Horizontal"
|
||||
BackgroundColor="Azure"
|
||||
Margin="20">
|
||||
|
||||
<HorizontalStackLayout HeightRequest="200">
|
||||
<Image
|
||||
Source="tmp1.jpeg"
|
||||
/>
|
||||
<Image
|
||||
Source="tmp2.jpeg"
|
||||
/>
|
||||
<Image
|
||||
Source="tmp3.jpeg"
|
||||
/>
|
||||
<Image
|
||||
Source="tmp2.jpeg"
|
||||
/>
|
||||
<Image
|
||||
Source="tmp1.jpeg"
|
||||
/>
|
||||
</HorizontalStackLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
<Label
|
||||
Text="Ceci est une search bar"
|
||||
TextColor="Black"
|
||||
BackgroundColor="DarkSalmon"
|
||||
HorizontalTextAlignment="Center"
|
||||
FontAttributes="Bold"
|
||||
Margin="20"
|
||||
Padding="15"
|
||||
/>
|
||||
|
||||
<SearchBar
|
||||
Placeholder="Rechercher..."
|
||||
PlaceholderColor="Red"
|
||||
Margin="20"
|
||||
HeightRequest="50"
|
||||
WidthRequest="400"
|
||||
/>
|
||||
|
||||
<Label
|
||||
Text="Ceci est un slider"
|
||||
TextColor="Black"
|
||||
BackgroundColor="DarkSalmon"
|
||||
HorizontalTextAlignment="Center"
|
||||
FontAttributes="Bold"
|
||||
Margin="20"
|
||||
Padding="15"
|
||||
/>
|
||||
|
||||
<Slider
|
||||
Maximum="100"
|
||||
Minimum="0"
|
||||
Value="50"
|
||||
Margin="20"
|
||||
WidthRequest="400"
|
||||
/>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
|
||||
<BoxView Grid.Column="1" BackgroundColor="CornflowerBlue" CornerRadius="10"/>
|
||||
|
||||
<VerticalStackLayout Grid.Column="1" VerticalOptions="Center" HorizontalOptions="Center">
|
||||
<ActivityIndicator IsRunning="True" HeightRequest="50" WidthRequest="50" Color="Firebrick" />
|
||||
<Switch IsToggled="False" ThumbColor="Firebrick" OnColor="Salmon" />
|
||||
</VerticalStackLayout>
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
Loading…
Reference in new issue