I would like to set color for Text Cells in entire app.
I try something like this
(following https://developer.xamarin.com/guides/xamarin-forms/working-with/styles/):
Application.Current.Resources = new ResourceDictionary (); var textCellStyle = new Style (typeof(TextCell)) { Setters = { new Setter { Property = TextCell.TextColorProperty, Value = Color.Red } } }; Application.Current.Resources.Add (textCellStyle);
but it doesn't work. Someone know how to handle this with styles?