removes a fixed height request

main
Paul Schneider 9 years ago
parent 715b12dabe
commit 565caafc09
1 changed files with 6 additions and 7 deletions

@ -15,7 +15,7 @@
</ContentView.Resources>
<ContentView.Content>
<StackLayout>
<StackLayout Orientation="Horizontal" HeightRequest="70">
<StackLayout Orientation="Horizontal" >
<Grid>
<Grid.Behaviors>
<behaviors:StarBehavior x:Name="starOne" GroupName="myStar"/>
@ -61,8 +61,7 @@
<Image x:Name="starSelectedFour"
Source="{extensions:ImageResource BookAStar.Images.Validation.star_selected.png}"
IsVisible="{Binding Source={x:Reference starFour},
Path=IsStarred}"/>
IsVisible="{Binding Source={x:Reference starFour}, Path=IsStarred}" />
</Grid>
<Grid >
<Grid.Behaviors>
@ -73,9 +72,9 @@
<Image x:Name="starSelectedFive"
Source="{extensions:ImageResource BookAStar.Images.Validation.star_selected.png}"
IsVisible="{Binding Source={x:Reference starFive},
Path=IsStarred}"/>
IsVisible="{Binding Source={x:Reference starFive}, Path=IsStarred}" />
</Grid>
</StackLayout>
<StackLayout>
<StackLayout.Resources>

Loading…