1/10
Flashcards covering flyout and tab navigation concepts in .NET MAUI, based on the ITSH2405 05 Handout 1.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
Flyout Navigation
A type of navigation where a window of menu items slides out from the side of the device's screen, typically invoked by a 'hamburger' menu.
Flyout Menu Components
Header, FlyoutItems, MenuItems, and Footer, used to construct the flyout navigation in .NET MAUI.
FlyoutItem
Class used to implement flyout navigation in .NET MAUI as part of the Shell app development paradigm.
ShellContent Property
Specifies what gets displayed when a FlyoutItem is tapped, pointing to a page in the application.
Shell Page
Serves as the application's main page and hosts FlyoutItems.
MenuItem Object
Represents menu items in the flyout, similar to buttons, leading to actions rather than page displays.
Flyout Header
Optional content that appears at the top of the flyout, defined using the Shell.FlyoutHeader bindable property.
Flyout Footer
Optional content that appears at the bottom of the flyout, defined using the Shell.FlyoutFooter bindable property.
Tab Navigation
Navigation pattern with a permanently displayed tab strip at the top or bottom of the screen, where each tab represents a specific section or page.
TabBar Object
Used to implement tab navigation in a .NET MAUI shell app, displaying tabs and switching content upon selection.
Tab Object
A child of the TabBar, containing a ShellContent object set to a ContentPage object to define each tab's content.