import React from 'react' // eslint-disable-line no-unused-vars import { StyleSheet, Text, TouchableHighlight } from 'react-native' export default function PauseResumeButton (props) { if (!props.uploadStarted || props.uploadComplete) { return null } return ( {props.isPaused ? 'Resume' : 'Pause'} ) } const styles = StyleSheet.create({ button: { backgroundColor: '#cc0077', padding: 10, }, text: { color: '#fff', textAlign: 'center', fontSize: 17, }, })