What are the default values of an imagecell?
I need to know the default Padding and layouts used.
Currently i have
View = new StackLayout
{
Orientation = StackOrientation.Horizontal, Padding = new Thickness (10, 10),
Children = {
new Image { Source = "phone_icon.png" },
new StackLayout {
Spacing = 0,
Children = {
new Label{ Text = profile.HomeNumber, FontSize = 17 },
new Label{ Text = "Mobile", FontSize = 12, TextColor = Color.Teal }
}
}
}
};