feat(app): keyboard open and close events (#18478)

This commit is contained in:
Liam DeBeasi
2020-04-30 16:07:44 -04:00
committed by GitHub
parent dea9248763
commit ae5f1ddff0
8 changed files with 524 additions and 9 deletions

View File

@@ -56,6 +56,10 @@ export interface BackButtonEventDetail {
register(priority: number, handler: (processNextHandler: () => void) => Promise<any> | void): void;
}
export interface KeyboardEventDetail {
keyboardHeight: number;
}
export interface StyleEventDetail {
[styleName: string]: boolean;
}