having an odd issue with sf button and using multi line content
<ListView x:Name="lvSessions" VerticalScrollBarVisibility="Always">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout >
<syncfusion:SfButton Clicked="SfButton_Clicked"
AutomationId="{Binding Id}" Text="{Binding Name}" TextColor="White" VerticalOptions="CenterAndExpand">
<syncfusion:SfButton.Content >
<StackLayout BackgroundColor="White">
<Label Text="{Binding Name}" BackgroundColor="Black" VerticalTextAlignment="Center" TextColor="White" HorizontalOptions="Center"></Label>
<Label Text="{Binding StartDate}" BackgroundColor="Black" VerticalTextAlignment="Center" TextColor="White" HorizontalOptions="Center"></Label>
<BoxView Margin="10,10,10,10"></BoxView>
</StackLayout>
</syncfusion:SfButton.Content>
</syncfusion:SfButton>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Here is the result as you can see the text is being cliped at the bottom Ie not enough room in the button to show the full text any ideas?