i have a simple custom tile control in Xamarin Forms and i can't get the inner alignment to work like i would it expect in MS Xaml. (on Xamarin.iOS (for iPad!))
<ContentView.Content>
<Grid x:Name="LayoutGrid" BindingContext="{x:Reference tile}" BackgroundColor="{Binding Color}">
<Grid.GestureRecognizers>
<TapGestureRecognizer Tapped="ExecuteCommandOnTapped" />
</Grid.GestureRecognizers>
<StackLayout HorizontalOptions="Start" VerticalOptions="End" BackgroundColor="Aqua" Orientation="Vertical">
<Label x:Name="AdditionalDescription" Text="{Binding AdditionalText}" TextColor="{x:Static local:AppColors.AppBackground}" VerticalOptions="End" HorizontalOptions="Start" XAlign="End" YAlign="End" Font="32" />
<Label x:Name="Description" Text="{Binding Text}" TextColor="{x:Static local:AppColors.AppBackground}" VerticalOptions="End" HorizontalOptions="Start" XAlign="End" YAlign="End" Font="Bold, 32" />
</StackLayout>
</Grid>
</ContentView.Content>
Is there any trick to align the Inner Stacklayout to the bottom? When i use the control, the control has the expected size (fills the entire available space) but the inner stack layout is aligned to top. :(