im have problems styling an entry box. The following is my xaml:
Label TextColor="{x:Static helpers:Colors.LabelTextColor}" Text="Quoted:" VerticalOptions="Center"/>
Entry BackgroundColor="{x:Static helpers:Colors.TextBackgroundColor}" Text="{Binding QuantityQuoted, Mode=TwoWay}" Grid.Column="1" />
LabelTextColor = Color.Black;
TextBackgroundColor = Color.FromHex("#FFCCCCCC"); // GRAY
THE ATTACHED file shows the result. the gray is not in the entry's background, but in a large blob around the entry box. this large blob is on all entry boxes and it throws my whole layout. ie it makes the whole entry box much bigger than it should be.