ButtonWrapper.js 594 B

1234567891011121314151617181920212223
  1. import { StyleSheet, Text, View, TouchableWithoutFeedback, TouchableOpacity} from 'react-native'
  2. import React from 'react'
  3. const ButtonWrapper = ({ onPress, children, buttonStyle}) => {
  4. return (
  5. <TouchableOpacity onPress={onPress}>
  6. <View style={[styles.buttonStyle, buttonStyle]}>
  7. {children}
  8. </View>
  9. </TouchableOpacity>
  10. )
  11. }
  12. export default ButtonWrapper
  13. const styles = StyleSheet.create({
  14. buttonStyle: {
  15. alignItems: 'center',
  16. justifyContent: 'center',
  17. height: 'auto',
  18. width: 'auto'
  19. },
  20. })