Custom Rendering
The ActionSheet component has the following building blocks:
Header
— Rendered on top of the content. By default, it includes atitle
and asubTitle
.Content
— Renders the main content area of the ActionSheet. By default, it contains a list of items that you can split into two groups. The content can be completely customized.Footer
— Rendered below the content area of the ActionSheet.
The ActionSheet allows you to use custom components to customize the appearance of its building blocks.
To render custom content, you can use the following properties in a combination with a slot template:
header
— Specifies the template that will be used in the header section of the ActionSheet.content
— Specifies the template that overrides theContent
building block section.footer
— Specifies the template that will be displayed in the footer area of the ActionSheet.
Header Customization
Use the header
property to customize the header section of the ActionSheet.
The
header
prop definition overrides the ActionSheet'stitle
andsubTitle
options.
The following example demonstrates the usage of the header
property in action.
Content Customization
The content
property allows you to completely customize the main content area of the ActionSheet. This enables you to render custom content even when an items
collection is not provided.
The following example demonstrates the usage of the component
property in action.
Footer Customization
Use the footer
property to render a footer below the Content
ActionSheet area.
The following example demonstrates the the usage of the footer
property in action.