Mobile App Programing 2 (05 Handout 1)

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Flashcards covering flyout and tab navigation concepts in .NET MAUI, based on the ITSH2405 05 Handout 1.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

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.

2
New cards

Flyout Menu Components

Header, FlyoutItems, MenuItems, and Footer, used to construct the flyout navigation in .NET MAUI.

3
New cards

FlyoutItem

Class used to implement flyout navigation in .NET MAUI as part of the Shell app development paradigm.

4
New cards

ShellContent Property

Specifies what gets displayed when a FlyoutItem is tapped, pointing to a page in the application.

5
New cards

Shell Page

Serves as the application's main page and hosts FlyoutItems.

6
New cards

MenuItem Object

Represents menu items in the flyout, similar to buttons, leading to actions rather than page displays.

7
New cards

Flyout Header

Optional content that appears at the top of the flyout, defined using the Shell.FlyoutHeader bindable property.

8
New cards

Flyout Footer

Optional content that appears at the bottom of the flyout, defined using the Shell.FlyoutFooter bindable property.

9
New cards

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.

10
New cards

TabBar Object

Used to implement tab navigation in a .NET MAUI shell app, displaying tabs and switching content upon selection.

11
New cards

Tab Object

A child of the TabBar, containing a ShellContent object set to a ContentPage object to define each tab's content.