pull/35/head
parent
aff08f349c
commit
c1418d43fb
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Trek_12.Views.component.ContentLeaderBoard">
|
||||
x:Class="Trek_12.Views.Components.ContentLeaderBoard">
|
||||
<Grid ColumnDefinitions="auto,*,*,*,*"
|
||||
RowDefinitions="*,*"
|
||||
Margin="0,20">
|
@ -1,4 +1,4 @@
|
||||
namespace Trek_12.Views.component;
|
||||
namespace Trek_12.Views.Components;
|
||||
|
||||
public partial class ContentLeaderBoard : ContentView
|
||||
{
|
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Trek_12.Views.Components.viewsProfils">
|
||||
<VerticalStackLayout>
|
||||
<Grid ColumnDefinitions="*,*,*,*" >
|
||||
<Frame Margin="10"
|
||||
Grid.Column="1"
|
||||
BorderColor="Black"
|
||||
CornerRadius="50"
|
||||
HeightRequest="60"
|
||||
WidthRequest="60"
|
||||
IsClippedToBounds="True"
|
||||
HasShadow="True"
|
||||
HorizontalOptions="CenterAndExpand">
|
||||
<Image Source="profile.jpg"
|
||||
Aspect="AspectFill"
|
||||
Margin="-20"/>
|
||||
</Frame>
|
||||
<Label Text="Profile n°*" Grid.Column="2" TextColor="Black" FontSize="Large" HorizontalTextAlignment="Center" Margin="100"/>
|
||||
</Grid>
|
||||
</VerticalStackLayout>
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace Trek_12.Views.Components;
|
||||
|
||||
public partial class viewsProfils : ContentView
|
||||
{
|
||||
public viewsProfils()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue