-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Unforked RKWebView | Nick Lockwood - [ReactNative] Add integration test stuff | Spencer Ahrens - [ReactNative] AlertIOS.alert and examples | Eric Vicenti - [react-packager] Implement image loading i.e. ix('img') -> require('image!img'); | Amjad Masad - Fixed scrollOffset bug | Nick Lockwood - [React Native] Update 2048 | Alex Akers - deepDiffer should support explicitly undefined values | Thomas Aylott
- Loading branch information
Showing
52 changed files
with
2,807 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/** | ||
* Copyright 2004-present Facebook. All Rights Reserved. | ||
*/ | ||
'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, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.