@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
17 lines (16 loc) • 805 B
TypeScript
import { PageBase, actionBarHiddenProperty, androidStatusBarBackgroundProperty } from './page-common';
import { View } from '../core/view';
import { Color } from '../../color';
export * from './page-common';
export declare class Page extends PageBase {
[actionBarHiddenProperty.setNative]: (value: boolean) => void;
[androidStatusBarBackgroundProperty.getDefault]: () => number;
[androidStatusBarBackgroundProperty.setNative]: (value: number | Color) => void;
nativeViewProtected: org.nativescript.widgets.GridLayout;
createNativeView(): org.nativescript.widgets.GridLayout;
initNativeView(): void;
_addViewToNativeVisualTree(child: View, atIndex?: number): boolean;
onLoaded(): void;
private updateActionBar;
accessibilityScreenChanged(refocus?: boolean): void;
}