@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
19 lines • 748 B
JavaScript
export class SharedTransitionHelper {
static animate(state, transitionContext, type) {
// may be able to consolidate android handling here in future
}
static interactiveStart(state, interactiveState, type) { }
static interactiveUpdate(state, interactiveState, type, percent) { }
static interactiveCancel(state, interactiveState, type) { }
static interactiveFinish(state, interactiveState, type) { }
}
export function applyInteractiveDismissShadow(_presentedView, _shadow) {
// iOS-only
}
export function syncInteractiveDismissShadow(_presentedView) {
// iOS-only
}
export function removeInteractiveDismissShadow(_presentedView) {
// iOS-only
}
//# sourceMappingURL=shared-transition-helper.android.js.map