mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
a swipe back named desire
This commit is contained in:
@ -222,4 +222,18 @@ export class NavBase {
|
||||
util.array.remove(this.items, itemOrIndex);
|
||||
}
|
||||
|
||||
swipeBackStart() {
|
||||
console.log('swipeBackStart')
|
||||
}
|
||||
|
||||
swipeBackEnd(completeSwipeBack) {
|
||||
console.log('swipeBackEnd, completeSwipeBack:', completeSwipeBack)
|
||||
}
|
||||
|
||||
swipeBackProgress(value) {
|
||||
value = Math.min(1, Math.max(0, value));
|
||||
|
||||
console.log('swipeBackProgress', value)
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user