Skip to content

Commit

Permalink
Merge pull request #40 from ZeroGachis/fix/ui-for-family-selection
Browse files Browse the repository at this point in the history
Fix/UI for family selection
  • Loading branch information
valentinmagrez authored Dec 24, 2020
2 parents a6013b8 + ae5f6bf commit 1dc9a91
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Smartway.UiComponent/Inputs/RadioButton.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
</ContentView.Triggers>
</ContentView>
<Frame
WidthRequest="16"
HeightRequest="16"
WidthRequest="10"
HeightRequest="10"
BackgroundColor="White"
VerticalOptions="Start"
HorizontalOptions="Center"
Expand All @@ -45,6 +45,9 @@
<DataTrigger TargetType="Frame" Binding="{Binding Source={x:Reference Self}, Path=Position}" Value="Left">
<Setter Property="Grid.Column" Value="0" />
</DataTrigger>
<DataTrigger TargetType="Frame" Binding="{Binding Source={x:Reference Self}, Path=IsChecked}" Value="False">
<Setter Property="BorderColor" Value="#8B8B8B"></Setter>
</DataTrigger>
</Frame.Triggers>
<BoxView
CornerRadius="50"
Expand Down

0 comments on commit 1dc9a91

Please sign in to comment.