1234567891011121314151617181920212223242526 |
- import { NativeModules } from 'react-native';
-
- export class Constants {
- static async get(): Promise<any> {
- if (!this.instance) {
- const constants = await NativeModules.RNNBridgeModule.getConstants();
- this.instance = new Constants(constants);
- }
- return this.instance;
- }
-
- private static instance: Constants;
-
- public readonly statusBarHeight: number;
- public readonly backButtonId: string;
- public readonly topBarHeight: number;
- public readonly bottomTabsHeight: number;
-
- private constructor(constants) {
- this.statusBarHeight = constants.statusBarHeight;
- this.topBarHeight = constants.topBarHeight;
- this.backButtonId = constants.backButtonId;
- this.bottomTabsHeight = constants.bottomTabsHeight;
- }
- }
|