style fixes for xamarin forms 4

This commit is contained in:
Kyle Spearrin 2019-10-30 09:30:45 -04:00
parent d308f1ca3b
commit d9907cdbeb
3 changed files with 6 additions and 4 deletions

View File

@ -59,7 +59,7 @@
</controls:FaLabel> </controls:FaLabel>
<Label Text="{Binding Name, Mode=OneWay}" <Label Text="{Binding Name, Mode=OneWay}"
LineBreakMode="TailTruncation" LineBreakMode="TailTruncation"
HorizontalOptions="StartAndExpand" HorizontalOptions="FillAndExpand"
VerticalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand"
StyleClass="list-title"/> StyleClass="list-title"/>
<Label Text="{Binding ItemCount, Mode=OneWay}" <Label Text="{Binding ItemCount, Mode=OneWay}"

View File

@ -112,7 +112,7 @@
Class="list-icon-platform" Class="list-icon-platform"
ApplyToDerivedTypes="True"> ApplyToDerivedTypes="True">
<Setter Property="FontSize" <Setter Property="FontSize"
Value="10" /> Value="23" />
</Style> </Style>
<Style TargetType="Button" <Style TargetType="Button"
ApplyToDerivedTypes="True" ApplyToDerivedTypes="True"
@ -139,6 +139,8 @@
Class="box-row-button-platform"> Class="box-row-button-platform">
<Setter Property="WidthRequest" <Setter Property="WidthRequest"
Value="37" /> Value="37" />
<Setter Property="HeightRequest"
Value="45" />
<Setter Property="FontSize" <Setter Property="FontSize"
Value="25" /> Value="25" />
</Style> </Style>

View File

@ -126,9 +126,9 @@
<Style TargetType="Label" <Style TargetType="Label"
Class="list-header"> Class="list-header">
<Setter Property="HorizontalOptions" <Setter Property="HorizontalOptions"
Value="StartAndExpand" /> Value="FillAndExpand" />
<Setter Property="VerticalOptions" <Setter Property="VerticalOptions"
Value="CenterAndExpand" /> Value="FillAndExpand" />
<Setter Property="VerticalTextAlignment" <Setter Property="VerticalTextAlignment"
Value="Center" /> Value="Center" />
</Style> </Style>