Files
ionic-framework/core/src/components/action-sheet-controller
Manu MA 34dfc3ce98 refactor(all): updating to newest stencil apis (#18578)
* chore(): update ionicons

* refactor(all): updating to newest stencil apis

* fix lint issues

* more changes

* moreee

* fix treeshaking

* fix config

* fix checkbox

* fix stuff

* chore(): update ionicons

* fix linting errors
2019-06-23 11:26:42 +02:00
..
2019-06-19 21:33:50 +02:00

ion-action-sheet-controller

Action Sheet controllers programmatically control the action sheet component. Action Sheets can be created and dismissed from the action sheet controller. View the Action Sheet documentation for a full list of options to pass upon creation.

Methods

create(options: ActionSheetOptions) => Promise<HTMLIonActionSheetElement>

Create an action sheet overlay with action sheet options.

Returns

Type: Promise<HTMLIonActionSheetElement>

dismiss(data?: any, role?: string | undefined, id?: string | undefined) => Promise<boolean>

Dismiss the open action sheet overlay.

Returns

Type: Promise<boolean>

getTop() => Promise<HTMLIonActionSheetElement | undefined>

Get the most recently opened action sheet overlay.

Returns

Type: Promise<HTMLIonActionSheetElement | undefined>


Built with StencilJS