reactnativecomponents
Version:
React Native Components
13 lines (12 loc) • 609 B
TypeScript
export default class ActionSheet {
/**
* @param options
* options (对象数组) - 一组按钮的选项(必选){label: '按钮标题', onPress: ()=>console.log('press')}
* cancelButtonIndex(整型) - 选项中取消按钮所在的位置(索引)
* destructiveButtonIndex(整型) - 选项中删除按钮所在的位置(索引)
* title(字符串) - 弹出框顶部的标题
* message(字符串) - 弹出框顶部标题下方的信息
* @param callback
*/
static showActionSheetWithOptions(options: Object, callback: Function): void;
}