Hi Xamarin Team,
I am in the process of finishing and app using Xamarin Forms, but the last process that I need is to make a Profile Page, everything works, the only thing I need is to save and retrieve the imagen so the user can see it using sqlite,
My Model Class is:
[Table("Perfil")]
public class Profile
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string Name{ get; set; }
public string Email { get; set; }
public ImageSource ProfilePic { get; set; }
}
Hope you can help me with and example or a process of how to make this
Regards
Thanks.
