Skip to content

Commit

Permalink
[todoxaml] FillAndExpand
Browse files Browse the repository at this point in the history
  • Loading branch information
conceptdev committed Oct 31, 2014
1 parent 4549801 commit 3ea6e83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TodoXaml/TodoXaml/Views/TodoCellXaml.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="TodoXaml.TodoCellXaml">
<StackLayout Padding="20,0,0,0" HorizontalOptions="StartAndExpand" Orientation="Horizontal">
<Label Text="{Binding Name}" YAlign="Center" />
<Image Source="check" IsVisible="{Binding Done}" />
<StackLayout Padding="20,0,20,0" HorizontalOptions="FillAndExpand" Orientation="Horizontal">
<Label Text="{Binding Name}" YAlign="Center" HorizontalOptions="StartAndExpand" />
<Image Source="check" IsVisible="{Binding Done}" HorizontalOptions="EndAndExpand" />
</StackLayout>
</ContentView>

0 comments on commit 3ea6e83

Please sign in to comment.