When using shell title view, an extra padding space is coming below title view only in IOS.
Code for TitleView
<Shell.TitleView>
<Grid ColumnDefinitions="*,2*" Margin="0" Padding="0">
<Image x:Name="ecolabLogo" AutomationId="ecolabLogoId" Source="logo.png" HeightRequest="23" HorizontalOptions="Start" />
<Image x:Name="logOutImage" AutomationId="logOutImageId" Grid.Column="1" Source="logout.png" HeightRequest="26" HorizontalOptions="End" Margin="0,0,10,0" >
<Image.GestureRecognizers>
<TapGestureRecognizer NumberOfTapsRequired="1" Command="{Binding LogOutCommand}" />
</Image.GestureRecognizers>
</Image>
</Grid>
</Shell.TitleView>
Can someone give me the solution to remove the extra space below shell title view (IOS) ?
Like can we do it using iOSShellRenderer, because I have tried giving padding and margins (also -ve margin) as 0 to content pages, but it is not working.