Action Sheet
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
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-actionsheet $ npm install @ionic-native/action-sheet $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-actionsheet $ npm install @ionic-native/action-sheet
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- Browser
- iOS
- Windows
- Windows Phone 8
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { 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);});