GroupBuilder

Declares the tabs inside a group.
public sealed class GroupBuilder

Methods

Group

Adds a nested group.

public GroupBuilder 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

Tab

Adds a tab page to the group.

public GroupBuilder Tab<TView>(
  string title,
  ImageSource icon,
  TabPlacement placement = Automatic) 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