parent
536d155da8
commit
f966490576
@ -0,0 +1,83 @@
|
||||
<?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">
|
||||
|
||||
<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"
|
||||
/>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace Trek_12.Views;
|
||||
|
||||
public partial class PageConnexion : ContentPage
|
||||
{
|
||||
public PageConnexion()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue