I have a single ShellContent
set to my Shell:
public App()
{
InitializeComponent();
var shell = new AppShell();
shell.FlyoutBehavior = FlyoutBehavior.Disabled;
shell.CurrentItem = new ShellContent() { ContentTemplate = new DataTemplate(() => new MyPage()) };
MainPage = shell;
}
And it looks like this, notice the height of the navbar:
It does not take the same height has in the docs. How can I hide the titleview - the area above the search handler?