Merge branch 'master'

This commit is contained in:
Vasil Trifonov
2020-01-17 15:12:28 +02:00
parent 432a029499
commit b76893801d
3131 changed files with 418263 additions and 185769 deletions

View File

@@ -0,0 +1,13 @@
export module ios {
export function getActualHeight(view: any): number {
throw new Error("Not implemented for Android");
}
export function getStatusBarHeight(viewController?: any): number {
throw new Error("Not implemented for Android");
}
export function _layoutRootView(rootView: any, parentBounds: any) {
throw new Error("Not implemented for Android");
}
}