UNPKG

@nativescript-community/systemui

Version:

Provides API for changing the styles of SystemUI (StatusBar, NavigationBar...) on iOS.

17 lines (16 loc) 989 B
import { Color, CssProperty, Style, View } from '@nativescript/core'; export declare function applyMixins(derivedCtor: any, baseCtors: any[], options?: { after?: boolean; override?: boolean; omit?: (string | symbol)[]; }): void; export declare const cssProperty: (target: Object, key: string | symbol) => void; export declare const cssNavigationBarColorProperty: CssProperty<Style, Color>; export declare const cssNavigationBarStyleProperty: CssProperty<Style, unknown>; export declare const cssStatusBarColorProperty: CssProperty<Style, Color>; export declare const statusBarHiddenProperty: CssProperty<Style, boolean>; export declare const cssWindowBgColorProperty: CssProperty<Style, Color>; export declare const keepScreenAwakeProperty: CssProperty<Style, boolean>; export declare const screenBrightnessProperty: CssProperty<Style, number>; export declare const screenOrientationProperty: CssProperty<Style, unknown>; export declare function findTopView(view: View): View;