Files
NativeScript/packages/core/ui/utils.android.ts
2020-08-11 22:50:33 -07:00

14 lines
377 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');
}
}