|
|
@ -21,6 +21,37 @@
|
|
|
|
<Label Text="{Binding Name}" Style="{StaticResource h1}"/>
|
|
|
|
<Label Text="{Binding Name}" Style="{StaticResource h1}"/>
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
<Label Text="{Binding Bio}"/>
|
|
|
|
<Label Text="{Binding Bio}"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Label Text="Caractéristiques" Style="{StaticResource h3}" Padding="0,10,0,0"/>
|
|
|
|
|
|
|
|
<CollectionView ItemsSource="{Binding Characteristics}">
|
|
|
|
|
|
|
|
<CollectionView.ItemsLayout>
|
|
|
|
|
|
|
|
<GridItemsLayout Orientation="Vertical" Span="3"
|
|
|
|
|
|
|
|
HorizontalItemSpacing="10"
|
|
|
|
|
|
|
|
VerticalItemSpacing="10"/>
|
|
|
|
|
|
|
|
</CollectionView.ItemsLayout>
|
|
|
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
<Border StrokeThickness="1">
|
|
|
|
|
|
|
|
<VerticalStackLayout Padding="10">
|
|
|
|
|
|
|
|
<Label Text="{Binding Key}" HorizontalTextAlignment="Center"/>
|
|
|
|
|
|
|
|
<Label Text="{Binding Value}" HorizontalTextAlignment="Center"/>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Label Text="Compétences" Style="{StaticResource h3}" Padding="0,10,0,0"/>
|
|
|
|
|
|
|
|
<CollectionView ItemsSource="{Binding Skills}">
|
|
|
|
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
<VerticalStackLayout Padding="10">
|
|
|
|
|
|
|
|
<Label Text="{Binding Name}" FontAttributes="Bold"/>
|
|
|
|
|
|
|
|
<Label Text="{Binding Description}"/>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
</CollectionView>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|
|
|
|
</ContentPage>
|