You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.8 KiB
61 lines
1.8 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage BackgroundColor="White"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="CanYouBuildIt.Views.Favoris"
|
|
Title="Favoris"/>
|
|
|
|
<VerticalStackLayout Margin="0,50,0,0">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Image Grid.Column="0"
|
|
HeightRequest="200"
|
|
Source="pc3.png"
|
|
/>
|
|
<Image Grid.Column="2"
|
|
HeightRequest="200"
|
|
Source="pc3.png"
|
|
/>
|
|
<Image Grid.Column="4"
|
|
HeightRequest="200"
|
|
Source="pc3.png"
|
|
/>
|
|
<Image Grid.Column="1"
|
|
HeightRequest="200"
|
|
Source="pc3.png"
|
|
/>
|
|
<Image Grid.Column="3"
|
|
HeightRequest="200"
|
|
Source="pc3.png"
|
|
/>
|
|
<Image Grid.Column="5"
|
|
HeightRequest="200"
|
|
Source="pc3.png"
|
|
/>
|
|
|
|
</Grid>
|
|
|
|
|
|
<Button
|
|
BackgroundColor="DimGrey"
|
|
Clicked="backHome"
|
|
HorizontalOptions="Center"
|
|
SemanticProperties.Hint="Counts the number of times you click"
|
|
Text="Home"
|
|
TextColor="Snow"
|
|
x:Name="home"/>
|
|
|
|
</VerticalStackLayout>
|
|
|