|
|
|
@ -13,7 +13,7 @@ public partial class viewsProfils : ContentView
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static readonly BindableProperty PseudoProperty =
|
|
|
|
|
BindableProperty.Create("Pseudo", typeof(string), typeof(ContentLeaderBoard), "Profile n°*");
|
|
|
|
|
BindableProperty.Create("Pseudo", typeof(string), typeof(ContentLeaderBoard), "Profile n°*");
|
|
|
|
|
|
|
|
|
|
public string Pseudo
|
|
|
|
|
{
|
|
|
|
@ -30,4 +30,9 @@ public partial class viewsProfils : ContentView
|
|
|
|
|
get => converter.RetrieveImage((string)GetValue(ProfilePictureProperty));
|
|
|
|
|
set => SetValue(ProfilePictureProperty, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static readonly BindableProperty CreationDateProperty =
|
|
|
|
|
BindableProperty.Create("CreationDate", typeof(string), typeof(viewsProfils), string.Empty);
|
|
|
|
|
|
|
|
|
|
public string CreationDate => (string)GetValue(CreationDateProperty);
|
|
|
|
|
}
|