|
|
|
@ -4,6 +4,12 @@
|
|
|
|
|
x:Class="Trek_12.Views.PageConnexion"
|
|
|
|
|
Title="PageConnexion">
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<ScrollView Orientation="Vertical">
|
|
|
|
|
<VerticalStackLayout BackgroundColor="AliceBlue">
|
|
|
|
|
|
|
|
|
@ -40,8 +46,7 @@
|
|
|
|
|
BackgroundColor="Azure"
|
|
|
|
|
Margin="20">
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
HeightRequest="200">
|
|
|
|
|
<HorizontalStackLayout HeightRequest="200">
|
|
|
|
|
<Image
|
|
|
|
|
Source="tmp1.jpeg"
|
|
|
|
|
/>
|
|
|
|
@ -78,6 +83,33 @@
|
|
|
|
|
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>
|