Next article about bugs in Xamarin will touch topic of Styles. Styles for all of controls not only Frame (and if you wondering why Frame you should check first two articles about Xamarin here and here).
First of all if you are using Styles in Xamarin you probably know how to define implicit styles. If not here is a sample:
<Application.Resources> <ResourceDictionary> <Style TargetType="Label"> <Setter Property="FontSize" Value="45" /> </Style> </ResourceDictionary> </Application.Resources>