mirror of
https://github.com/status-im/react-native.git
synced 2025-02-19 12:57:00 +00:00
- [ReactNative] Use deprecated ix in TabBarExample | Amjad Masad - [ReactNative] Expanded license on obj-c files | Christopher Chedeau - [ReactNative] Expanded license on js files | Christopher Chedeau - [ReactNative] Fix React Devtools integration | Alex Kotliarskyi - [Text] Account for font leading so descenders are not clipped | James Ide - [ReactNative] Expanded license on js packager files | Christopher Chedeau - more UIExplorer flow | Basil Hosmer - [react-packager] Pick up package changes while running | Amjad Masad - Added a graph view and a ReactNative metric that displays current queue and execution time for the JS thread. | Bryce Redd - [ReactNative] Add NativeModules and DeviceEventEmitter to react-native exports | Alex Kotliarskyi
106 lines
2.9 KiB
JavaScript
106 lines
2.9 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.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var React = require('react-native');
|
|
var {
|
|
StyleSheet,
|
|
View,
|
|
Text,
|
|
TouchableHighlight,
|
|
AlertIOS,
|
|
} = React;
|
|
|
|
exports.framework = 'React';
|
|
exports.title = 'AlertIOS';
|
|
exports.description = 'iOS alerts and action sheets';
|
|
exports.examples = [{
|
|
title: 'Alerts',
|
|
render() {
|
|
return (
|
|
<View>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => AlertIOS.alert(
|
|
'Foo Title',
|
|
'My Alert Msg'
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with message and default button</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => AlertIOS.alert(
|
|
null,
|
|
null,
|
|
[
|
|
{text: 'Button', onPress: () => console.log('Button Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with only one button</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => AlertIOS.alert(
|
|
'Foo Title',
|
|
'My Alert Msg',
|
|
[
|
|
{text: 'Foo', onPress: () => console.log('Foo Pressed!')},
|
|
{text: 'Bar', onPress: () => console.log('Bar Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with two buttons</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => AlertIOS.alert(
|
|
'Foo Title',
|
|
null,
|
|
[
|
|
{text: 'Foo', onPress: () => console.log('Foo Pressed!')},
|
|
{text: 'Bar', onPress: () => console.log('Bar Pressed!')},
|
|
{text: 'Baz', onPress: () => console.log('Baz Pressed!')},
|
|
]
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with 3 buttons</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight style={styles.wrapper}
|
|
onPress={() => AlertIOS.alert(
|
|
'Foo Title',
|
|
'My Alert Msg',
|
|
'..............'.split('').map((dot, index) => ({
|
|
text: 'Button ' + index,
|
|
onPress: () => console.log('Pressed ' + index)
|
|
}))
|
|
)}>
|
|
<View style={styles.button}>
|
|
<Text>Alert with too many buttons</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
</View>
|
|
);
|
|
},
|
|
}];
|
|
|
|
var styles = StyleSheet.create({
|
|
wrapper: {
|
|
borderRadius: 5,
|
|
marginBottom: 5,
|
|
},
|
|
button: {
|
|
backgroundColor: '#eeeeee',
|
|
padding: 10,
|
|
},
|
|
});
|