Ctrl + K
Get StartedStylesCoreCompsCDK
Actions
Action Sheet
Button
Button Group
Context Menu
Dropdown Button
Menu
Side Menu
Form & Editors
Checkbox
Color Box
Color Palette
Cron Job
Date & Time Box
Date & Time Picker
Form
Image Editor
Json Viewer
Number Box
One time password
Paint
Password Box
Phone Box
Query Builder
Range Slider
Rate Picker
Rest Api Generator
Search Box
Select Box
Selection List
Step Wizard
Switch
Tag Box
Text Box
Textarea
Tree View
Uploader
WYSIWYG
Navigation & Layout
Avatar
Badge
Bottom Navigation
Breadcrumb
Calendar
Chips
Circular Progress
Collapse
Comment
Conversation
Data Pager
Data Table
Drawer
File Explorer
Grid Layout Builder
Image
KBD
List
Loading
Map
Media Viewer
Navbar
Picker
Popover
Popup
Progress Bar
Qrcode
Rail Navigation
Result
Skeleton
Sliding Item
Tabs
Tag
Time Line
Toolbar
Tooltip
Dialog & Notifications
Alert
Dialog
Loading Dialog
Notification
Toast

Action Sheet

import { AXActionSheetModule } from '@acorex/components/action-sheet'; Action sheet is a type of alert offering two or more options relevant to the context. It includes a title, an optional message, and a list of actions, with the title above and the actions below.

Overview

In this section, you can test different options of this component and see the output in real time

Usage

A simple example of using action sheet
Preview
Code

List item

The action sheet can receive and display an array of AXActionSheetItem.
Preview
Code

Custom content

You can use the action sheet to display your desired content. It is enough to set the content value equal to a component or template ref
Preview
Code

List item and custom content together

You can have both items and use content mode in an action sheet
Preview
Code

On close

this method call when you close action sheet
Preview
Code

Draggable

The action sheet is draggable and expands to full screen when pulled upward.
Preview
Code

Design Tokens

Design tokens are variables that define the visual style of ACoreX components. You can use them to change colors, typography, spacing, and other visual aspects. Default component colors use system surface colors.
--ax-comp-action-sheet-bg-colorvar(--ax-sys-color-lightest-surface)Background color of the action sheet.
--ax-comp-action-sheet-text-colorvar(--ax-sys-color-#{$name}-surface)Text color within the action sheet. Uses a theme color.
--ax-comp-action-sheet-hover-bg-colorvar(--ax-sys-color-surface)Background color of the action sheet when hovered.
--ax-comp-action-sheet-border-radius-sizevar(--ax-sys-border-radius)Border radius of the action sheet. Uses the system's border radius.

Methods

open

config: AXActionSheetConfig

Specifies the function to be called to open the action sheet with the given configuration.

Props

titlestringSample TitleSets the title of the action sheet.
subtitlestringThe subtitle is placed here so that if you have an explanation about this action sheet, you can insert itProvides a subtitle or description for the action sheet.
showHeaderbooleantrueDetermines whether the header is displayed.
closeOnBackdropbooleantrueSpecifies whether the action sheet should close when the backdrop is clicked.
showCloseButtonbooleantrueDetermines whether a close button is displayed.
itemsAXActionSheetItem[][]Specifies the array of button items to be displayed in the action sheet.
contentTemplateRef-Defines the custom template content to be displayed in the action sheet.

Copyright ©2017-2025 ACoreX Labs Inc.

On this page