mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ccde2fda6a
Summary: This diff introduces NativeStatusBarManager. Reviewed By: mdvacca Differential Revision: D16371384 fbshipit-source-id: a5485f8dec53a8f3f5bd22ad76e9f8ee0fc56f4c
22 lines
547 B
JavaScript
22 lines
547 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const NativeEventEmitter = require('../../EventEmitter/NativeEventEmitter');
|
|
import NativeStatusBarManager from './NativeStatusBarManager';
|
|
|
|
/**
|
|
* Use `StatusBar` for mutating the status bar.
|
|
*/
|
|
class StatusBarIOS extends NativeEventEmitter {}
|
|
|
|
module.exports = new StatusBarIOS(NativeStatusBarManager);
|