jverification-react-native
Version:
React Native JVerification component for Android and iOS
41 lines (35 loc) • 1.04 kB
JavaScript
import React from 'react';
import {StyleSheet, Text, View, TouchableHighlight} from 'react-native';
export default class CustomView2 extends React.Component {
render() {
return (
<View style={styles.container}>
<Button title="this is CustomView2"
onPress={() =>
console.log("CustomView2 onClicked")
}/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
width: 150,
height: 30,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#6FC6FC',
}
});
class Button extends React.Component {
render() {
return <TouchableHighlight
onPress={this.props.onPress}
underlayColor='#e4083f'
activeOpacity={0.5}>
<View style={styles.setBtnStyle}>
<Text style={styles.textStyle}>{this.props.title}</Text>
</View>
</TouchableHighlight>
}
}