TouchableOpacity #

A wrapper for making views respond properly to touches. On press down, the opacity of the wrapped view is decreased, dimming it.

Opacity is controlled by wrapping the children in an Animated.View, which is added to the view hiearchy. Be aware that this can affect layout.

Example:

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

Props #

activeOpacity number #

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

focusedOpacity number #

tvParallaxProperties object #

Apple TV parallax effects

Methods #

setOpacityTo(value, duration) #

Animate the touchable to a new opacity.

You can edit the content above on GitHub and send us a pull request!