Is it possible to adjust the line spacing? I'm using StackLayout and Label, but I can change it.
public App()
{
var stackedText = new StackLayout();
stackedText.Children.Add(new Label { Text = "John Doe", Font = Font.SystemFontOfSize(NamedSize.Large) });
stackedText.Children.Add(new Label { Text = "jdoe@gmail.com" });
stackedText.Children.Add(new Label { Text = "(111) 222-3333"});
MainPage = new ContentPage
{
Content = stackedText,
Padding = new Thickness(0, Device.OnPlatform(20, 0, 0), 0, 0)
};
}