2015-09-03 20:00:09 +00:00
|
|
|
/**
|
2017-05-06 03:50:47 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
2016-07-12 12:51:57 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2015-09-03 20:00:09 +00:00
|
|
|
* @flow
|
2017-05-06 03:50:47 +00:00
|
|
|
* @providesModule RNTesterButton
|
2015-09-03 20:00:09 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var React = require('react');
|
2017-04-12 23:09:48 +00:00
|
|
|
var PropTypes = require('prop-types');
|
2016-04-09 03:36:40 +00:00
|
|
|
var ReactNative = require('react-native');
|
2015-09-03 20:00:09 +00:00
|
|
|
var {
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
TouchableHighlight,
|
2016-04-09 03:36:40 +00:00
|
|
|
} = ReactNative;
|
2015-09-03 20:00:09 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class RNTesterButton extends React.Component<{onPress?: Function}> {
|
2016-07-26 08:00:02 +00:00
|
|
|
static propTypes = {
|
2017-04-12 23:09:48 +00:00
|
|
|
onPress: PropTypes.func,
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2015-09-03 20:00:09 +00:00
|
|
|
return (
|
|
|
|
<TouchableHighlight
|
|
|
|
onPress={this.props.onPress}
|
|
|
|
style={styles.button}
|
|
|
|
underlayColor="grey">
|
|
|
|
<Text>
|
2016-07-26 08:00:02 +00:00
|
|
|
{
|
|
|
|
// $FlowFixMe found when converting React.createClass to ES6
|
|
|
|
this.props.children}
|
2015-09-03 20:00:09 +00:00
|
|
|
</Text>
|
|
|
|
</TouchableHighlight>
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-03 20:00:09 +00:00
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
button: {
|
2015-09-11 08:56:51 +00:00
|
|
|
borderColor: '#696969',
|
2015-09-03 20:00:09 +00:00
|
|
|
borderRadius: 8,
|
|
|
|
borderWidth: 1,
|
|
|
|
padding: 10,
|
|
|
|
margin: 5,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
2015-09-11 08:56:51 +00:00
|
|
|
backgroundColor: '#d3d3d3',
|
2015-09-03 20:00:09 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2017-05-06 03:50:47 +00:00
|
|
|
module.exports = RNTesterButton;
|