From the course: .NET MAUI Essential Training

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Organizing Shell content

Organizing Shell content

- [Instructor] You remember that here on line 12 we called use MauiApp of type app. And when we look at that app class really all it does is it says my main page is a new AppShell and AppShell is a xaml file that has our framework for that navigation shell. So the root element on line two is a shell and we have the Shell FlyoutBehavior equals disabled. So by default that flyout on the left hand side of our view won't show up and there won't be an indicator for it. I want to change that and I could change it to something else. So if we look, we can see we have disabled we have flyout or we have locked where we want to lock it open or closed. And it was disabled and I might set it to flyout. But I want to be a little more flexible between my desktop and mobile applications because on the desktop I want it to be out and on the mobile device I want it to be collapsed by default so that you have to initiate that behavior. So…

Contents