Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 725 Bytes

TouchableOpacity.md

File metadata and controls

24 lines (18 loc) · 725 Bytes

A wrapper for making views respond properly to touches. On press down, the opacity of the wrapped view is decreased, dimming it. This is done without actually changing the view hierarchy, and in general is easy to add to an app without weird side-effects.

Example:

renderButton: function() {
  return (
    <TouchableOpacity onPress={this._onPressButton}>
      <Image
        style={styles.button}
        source={require('image!myButton')}
      />
    </View>
  );
},

Props

TouchableWithoutFeedback props...

activeOpacity number

Determines what the opacity of the wrapped view should be when touch is active.