@capacitor/action-sheet
Action Sheet API 提供对原生操作表的访问,操作表从屏幕底部弹出,显示用户可以执行的操作。
安装
npm install @capacitor/action-sheet
npx cap sync
变量
该插件将使用以下项目变量(在应用的 variables.gradle
文件中定义):
androidxMaterialVersion
:com.google.android.material:material
的版本(默认:1.12.0
)
PWA 注意事项
Action Sheet 插件需要 PWA Elements 才能正常工作。
示例
import { ActionSheet, ActionSheetButtonStyle } from '@capacitor/action-sheet';
const showActions = async () => {
const result = await ActionSheet.showActions({
title: '照片选项',
message: '选择一个操作选项',
options: [
{
title: '上传',
},
{
title: '分享',
},
{
title: '删除',
style: ActionSheetButtonStyle.Destructive,
},
],
});
console.log('操作表结果:', result);
};
API
showActions(...)
showActions(options: ShowActionsOptions) => Promise<ShowActionsResult>
显示一个操作表样式的模态框,提供多种选项供用户选择。
参数 | 类型 |
---|---|
options |
|
返回值:
Promise<ShowActionsResult>
自版本: 1.0.0
Interfaces
ShowActionsResult
属性 | 类型 | 描述 | 自版本 |
---|---|---|---|
index | number | 所点击选项的索引(从零开始) | 1.0.0 |
ShowActionsOptions
属性 | 类型 | 描述 | 自版本 |
---|---|---|---|
title | string | 操作表的标题。 | 1.0.0 |
message | string | 标题下方显示的消息。此选项仅在 iOS 上受支持。 | 1.0.0 |
options | ActionSheetButton[] | 用户可选择的选项。 | 1.0.0 |
ActionSheetButton
属性 | 类型 | 描述 | 自版本 |
---|---|---|---|
title | string | 选项的标题 | 1.0.0 |
style |
| 选项的样式。此选项仅在 iOS 上受支持。 | 1.0.0 |
icon | string | 选项的图标(使用 ionicon 命名规范)。此选项仅在 Web 上受支持。 | 1.0.0 |
Enums
ActionSheetButtonStyle
成员 | 值 | 描述 | 自版本 |
---|---|---|---|
Default | 'DEFAULT' | 选项的默认样式。 | 1.0.0 |
Destructive | 'DESTRUCTIVE' | 用于破坏性选项的样式。 | 1.0.0 |
Cancel | 'CANCEL' | 用于取消操作表的选项样式。如果使用,应放在最后一个可用选项上。 | 1.0.0 |