Flutter教程

Action Sheet

Contents

The ActionSheet plugin shows a native list of options the user can choose from.

Requires Cordova plugin: cordova-plugin-actionsheet. For more info, please see the ActionSheet plugin docs.

https://github.com/EddyVerbruggen/cordova-plugin-actionsheet

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 底部弹出框Action Sheet插件的安装(Installation)

ionic cordova plugin add cordova-plugin-actionsheet npm install @ionic-native/action-sheet
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/action-sheet

Ionic 底部弹出框Action Sheet插件支持的平台(Supported Platforms)

  • Android
  • Browser
  • iOS
  • Windows
  • Windows Phone 8

Ionic 底部弹出框Action Sheet插件的用法(Usage)

import { ActionSheet, ActionSheetOptions } from '@ionic-native/action-sheet/ngx';

constructor(private actionSheet: ActionSheet) { }

...


let buttonLabels = ['Share via Facebook', 'Share via Twitter'];

const options: ActionSheetOptions = {
  title: 'What do you want with this image?',
  subtitle: 'Choose an action',
  buttonLabels: buttonLabels,
  addCancelButtonWithLabel: 'Cancel',
  addDestructiveButtonWithLabel: 'Delete',
  androidTheme: this.actionSheet.ANDROID_THEMES.THEME_HOLO_DARK,
  destructiveButtonLast: true
}

this.actionSheet.show(options).then((buttonIndex: number) => {
  console.log('Button pressed: ' + buttonIndex);
});