mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 13:01:13 +00:00
10ffe170c2
Summary: Added the ability to turn on and off the network activity indicator using: ``` StatusBarIOS.setNetworkActivityIndicatorVisible(true) ``` and ``` StatusBarIOS.setNetworkActivityIndicatorVisible(false) ``` Also added an example to the UIExplorer example app. Fix #986 Closes https://github.com/facebook/react-native/pull/2079 Github Author: Mark Miyashita <negativetwelve@gmail.com>
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule StatusBarIOS
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var RCTStatusBarManager = require('NativeModules').StatusBarManager;
|
|
|
|
type StatusBarStyle = $Enum<{
|
|
'default': string,
|
|
'light-content': string,
|
|
}>;
|
|
|
|
type StatusBarAnimation = $Enum<{
|
|
'none': string,
|
|
'fade': string,
|
|
'slide': string,
|
|
}>;
|
|
|
|
var StatusBarIOS = {
|
|
|
|
setStyle(style: StatusBarStyle, animated?: boolean) {
|
|
animated = animated || false;
|
|
RCTStatusBarManager.setStyle(style, animated);
|
|
},
|
|
|
|
setHidden(hidden: boolean, animation?: StatusBarAnimation) {
|
|
animation = animation || 'none';
|
|
RCTStatusBarManager.setHidden(hidden, animation);
|
|
},
|
|
|
|
setNetworkActivityIndicatorVisible(visible: boolean) {
|
|
RCTStatusBarManager.setNetworkActivityIndicatorVisible(visible);
|
|
},
|
|
};
|
|
|
|
module.exports = StatusBarIOS;
|