@ionic/core 0.1.4-8

This commit is contained in:
Brandy Carney
2018-03-19 17:53:02 -04:00
parent e8cf9927cc
commit 4d8a99f03b
13 changed files with 127 additions and 3 deletions

View File

@ -202,9 +202,23 @@ Dismiss the picker overlay after it has been presented.
#### onDidDismiss()
Returns a promise that resolves when the picker did dismiss. It also accepts a callback
that is called in the same circustances.
```
const {data, role} = await picker.onDidDismiss();
```
#### onWillDismiss()
Returns a promise that resolves when the picker will dismiss. It also accepts a callback
that is called in the same circustances.
```
const {data, role} = await picker.onWillDismiss();
```
#### present()