2015-02-06 23:46:31 +00:00
|
|
|
/**
|
2015-03-26 18:24:15 +00:00
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
2015-03-23 22:07:33 +00:00
|
|
|
*
|
2015-03-26 18:24:15 +00:00
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2015-03-23 22:07:33 +00:00
|
|
|
*
|
|
|
|
* @flow
|
2015-02-06 23:46:31 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react-native');
|
|
|
|
var {
|
|
|
|
StyleSheet,
|
|
|
|
View,
|
|
|
|
Text,
|
|
|
|
TouchableHighlight,
|
|
|
|
StatusBarIOS,
|
|
|
|
} = React;
|
|
|
|
|
|
|
|
exports.framework = 'React';
|
|
|
|
exports.title = 'StatusBarIOS';
|
|
|
|
exports.description = 'Module for controlling iOS status bar';
|
|
|
|
exports.examples = [{
|
|
|
|
title: 'Status Bar Style',
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View>
|
2015-06-05 15:46:17 +00:00
|
|
|
{['default', 'light-content'].map((style) =>
|
2015-02-06 23:46:31 +00:00
|
|
|
<TouchableHighlight style={styles.wrapper}
|
2015-06-05 15:46:17 +00:00
|
|
|
onPress={() => StatusBarIOS.setStyle(style)}>
|
2015-02-06 23:46:31 +00:00
|
|
|
<View style={styles.button}>
|
2015-06-05 15:46:17 +00:00
|
|
|
<Text>setStyle('{style}')</Text>
|
2015-02-06 23:46:31 +00:00
|
|
|
</View>
|
|
|
|
</TouchableHighlight>
|
|
|
|
)}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
title: 'Status Bar Style Animated',
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View>
|
2015-06-05 15:46:17 +00:00
|
|
|
{['default', 'light-content'].map((style) =>
|
2015-02-06 23:46:31 +00:00
|
|
|
<TouchableHighlight style={styles.wrapper}
|
2015-06-05 15:46:17 +00:00
|
|
|
onPress={() => StatusBarIOS.setStyle(style, true)}>
|
2015-02-06 23:46:31 +00:00
|
|
|
<View style={styles.button}>
|
2015-06-05 15:46:17 +00:00
|
|
|
<Text>setStyle('{style}', true)</Text>
|
2015-02-06 23:46:31 +00:00
|
|
|
</View>
|
|
|
|
</TouchableHighlight>
|
|
|
|
)}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
title: 'Status Bar Hidden',
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View>
|
2015-06-05 15:46:17 +00:00
|
|
|
{['none', 'fade', 'slide'].map((animation) =>
|
2015-02-06 23:46:31 +00:00
|
|
|
<View>
|
|
|
|
<TouchableHighlight style={styles.wrapper}
|
2015-06-05 15:46:17 +00:00
|
|
|
onPress={() => StatusBarIOS.setHidden(true, animation)}>
|
2015-02-06 23:46:31 +00:00
|
|
|
<View style={styles.button}>
|
2015-06-05 15:46:17 +00:00
|
|
|
<Text>setHidden(true, '{animation}')</Text>
|
2015-02-06 23:46:31 +00:00
|
|
|
</View>
|
|
|
|
</TouchableHighlight>
|
|
|
|
<TouchableHighlight style={styles.wrapper}
|
2015-06-05 15:46:17 +00:00
|
|
|
onPress={() => StatusBarIOS.setHidden(false, animation)}>
|
2015-02-06 23:46:31 +00:00
|
|
|
<View style={styles.button}>
|
2015-06-05 15:46:17 +00:00
|
|
|
<Text>setHidden(false, '{animation}')</Text>
|
2015-02-06 23:46:31 +00:00
|
|
|
</View>
|
|
|
|
</TouchableHighlight>
|
|
|
|
</View>
|
|
|
|
)}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
2015-07-23 23:19:27 +00:00
|
|
|
}, {
|
|
|
|
title: 'Status Bar Network Activity Indicator',
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<TouchableHighlight style={styles.wrapper}
|
|
|
|
onPress={() => StatusBarIOS.setNetworkActivityIndicatorVisible(true)}>
|
|
|
|
<View style={styles.button}>
|
|
|
|
<Text>setNetworkActivityIndicatorVisible(true)</Text>
|
|
|
|
</View>
|
|
|
|
</TouchableHighlight>
|
|
|
|
<TouchableHighlight style={styles.wrapper}
|
|
|
|
onPress={() => StatusBarIOS.setNetworkActivityIndicatorVisible(false)}>
|
|
|
|
<View style={styles.button}>
|
|
|
|
<Text>setNetworkActivityIndicatorVisible(false)</Text>
|
|
|
|
</View>
|
|
|
|
</TouchableHighlight>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
2015-02-06 23:46:31 +00:00
|
|
|
}];
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
wrapper: {
|
|
|
|
borderRadius: 5,
|
|
|
|
marginBottom: 5,
|
|
|
|
},
|
|
|
|
button: {
|
|
|
|
backgroundColor: '#eeeeee',
|
|
|
|
padding: 10,
|
|
|
|
},
|
|
|
|
});
|