Files
NativeScript/nativescript-core/ui/utils.android.ts
2020-01-17 15:12:28 +02:00

14 lines
413 B
TypeScript

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");
}
}