diff --git a/docs/fundamentals/shell/flyout.md b/docs/fundamentals/shell/flyout.md index a8d2cf54e..b4cb7ffbe 100644 --- a/docs/fundamentals/shell/flyout.md +++ b/docs/fundamentals/shell/flyout.md @@ -1,7 +1,7 @@ --- title: ".NET MAUI Shell flyout" description: "Learn how to customize and control a .NET MAUI flyout, which is the optional root menu for a .NET MAUI Shell app." -ms.date: 08/30/2024 +ms.date: 11/28/2025 --- # .NET MAUI Shell flyout @@ -74,8 +74,10 @@ This implicit conversion automatically wraps each enumeration member: -- `AsSingleItem`, indicates that the item will be visible as a single item. This is the default value of the property. -- `AsMultipleItems`, indicates that the item and its direct children will be visible in the flyout as a group of items. +- `AsSingleItem`, indicates that the will be visible as a single entry in the flyout, regardless of how many child or objects it contains. When selected, the first child content is displayed, and users can switch between children using tabs (if more than one child exists). This is the default value of the property. +- `AsMultipleItems`, indicates that the direct children ( and objects) of the will each appear as separate entries in the flyout. This enables users to navigate directly to any child content from the flyout, rather than having to use tabs. + +Use `AsSingleItem` when you want to group related pages under a single flyout entry with tab navigation. Use `AsMultipleItems` when you want each page to be directly accessible from the flyout menu. A flyout item for each object within a can be displayed by setting the `FlyoutItem.FlyoutDisplayOptions` property to `AsMultipleItems`: