0.4.7 • Published 7 years ago

nuke-action-sheet v0.4.7

Weekly downloads
96
License
-
Repository
gitlab
Last release
7 years ago

ActionSheet

  • category: UI
  • chinese: 弹出菜单
  • type: UI组件

何时使用

ActionSheet 定义一组动作菜单,使用者在菜单中选择一项,或取消不做操作。

API

ActionSheet.show(params,onNotify,afterOpen,onFail)

ActionSheet 组件采用静态方法形式调用。

ActionSheet.show(params,onNotify,afterOpen,onFail)

params

params 对象包含下面几个基本属性

属性说明类型默认值
title标题string
options菜单数组array
cancelButtonIndexcancelButton在options中的indexnum
destructiveButtonIndexdestructiveButton在options中的indexnum
  • destructiveButton

    destructiveButton 是指在一系列菜单项中唯一的一个具有危险性、不可恢复性操作的按钮,按照ios的设计规范,这个按钮在 ActionSheet 中最多只能有1个,并且排列在列表倒数第二项。

    {
        options: ['拨打电话','发送短信','删除订单','取消'],
        cancelButtonIndex: 3,
        destructiveButtonIndex: 2,
        title:'ActionSheet Title'
    }

    建议把 destructiveButtonIndex 与 cancelButtonIndex 分别放在数组倒数第二项和倒数第一项。

  • cancelButton

    cancelButton 在 iOS 和 Android 2 端展现方式不同。

    在 iOS 端作为取消按钮,排列在列表最后一项,在安卓端不展示。

onNotify 回调

点击菜单项或取消按钮的回调,具有以下几种类型

  • { type : "cancel"}

  • { type : "button",buttonIndex : 1/2/3 }

  • { type : "destructive"}

afterOpen 成功渲染菜单的回调

onFail 渲染菜单失败的回调

0.4.7

7 years ago

2.0.0

8 years ago

0.4.6

9 years ago

0.4.5

9 years ago

0.4.4

9 years ago

0.4.3

9 years ago

0.4.2

9 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.1

9 years ago

0.2.0

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.1

10 years ago