PadTabsBuilder

Everything iPad: the sidebar, placements and iPad-only destinations.
public sealed class PadTabsBuilder

Methods

Group

Adds a sidebar section: a group of tabs, always sidebar-only.

public PadTabsBuilder Group(
  string title,
  ImageSource icon,
  Action<GroupBuilder> children)
ParameterSummary
string titleThe group's title.
ImageSource iconThe local icon shown for the group.
Action<GroupBuilder> childrenDeclares the tabs inside the group.

Returns

PlaceTab

Overrides how a declared tab takes part in user customization.

public PadTabsBuilder PlaceTab<TView>(
  TabPlacement placement) where TView : ContentView
ParameterSummary
TabPlacement placementThe placement to apply.
Type parameterSummary
ContentView TViewThe view type of the tab to place.

Returns

Shows the tabs as a sidebar.

public PadTabsBuilder Sidebar()

Returns

SidebarFooter

Shows a view of the given type at the sidebar's bottom. iOS 26 and later.

public PadTabsBuilder SidebarFooter<TView>() where TView : View, new()
Type parameterSummary
View TViewThe view type to host.

Returns

Tab

Adds an iPad-only tab. It does not exist on iPhone; reach the page there by navigation.

public PadTabsBuilder Tab<TView>(
  string title,
  ImageSource icon,
  TabPlacement placement = SidebarOnly) where TView : ContentView
ParameterSummary
string titleThe text displayed on the tab bar item.
ImageSource iconThe local icon shown on the tab.
(optional) TabPlacement placementHow the tab takes part in user customization.
Type parameterSummary
ContentView TViewThe type of the content view to host in the tab.

Returns