Setting the font color of an extended label doesn't seem to have any effect in iOS. Anyone else experiencing this, and if so, is there a workaround?
Running Labs 1.2 with the latest stable version of Xamarin.Forms. Color works on WinPhone/Android. I've tried setting it a few ways, ex: TextColor = Color.White, Color.FromRgb(255, 255, 255), Color.FromHex("#FFFFFF")
var lblMyLabel = new ExtendedLabel {
Text = "I am a label",
IsUnderline = true,
TextColor = Color.FromRgb(255, 255, 255),
BackgroundColor = Color.Aqua,
XAlign = TextAlignment.Center,
HorizontalOptions = LayoutOptions.Center
};