I just wanted to ask if there is any way to justify text in a Label. I am using Xamarin Forms Xaml.
Thanks.
UPDATE:
Use the XAlign property
XAlign
Label lbl = new Label(); lbl.Text = "I'm a Label!"; lbl.XAlign = TextAligntment.Start; // Start, Center, End are valid