()
| 18 | |
| 19 | export default class InputItem extends Component { |
| 20 | render() { |
| 21 | return <TouchableOpacity |
| 22 | onPress={this.props.onPress} |
| 23 | activeOpacity={0.3} |
| 24 | > |
| 25 | <View |
| 26 | style={styles.container} |
| 27 | > |
| 28 | <Image |
| 29 | style={[styles.item, {...this.props.style}]} |
| 30 | source={this.props.source} |
| 31 | ></Image> |
| 32 | </View> |
| 33 | </TouchableOpacity> |
nothing calls this directly
no outgoing calls
no test coverage detected