| id | touchable |
|---|---|
| title | Touchable |
| sidebar_label | Touchable |
import HeaderWithBadges from '@site/src/components/HeaderWithBadges';
:::note
This section refers to new Touchable component, meant to replace both buttons and touchables. If you are looking for documentation for the deprecated touchable components, check out the Legacy Touchables section.
:::
Touchable is a versatile new component introduced in Gesture Handler 3 to supersede previous button implementations. Designed for maximum flexibility, it provides a highly customizable interface for native touch handling while ensuring consistent behavior across platforms.
Touchable provides a simple interface for the common animations like opacity, underlay, and scale, implemented entirely on the platform. On Android, it also exposes the native ripple effect on press (turned off by default).
If the provided animations are not sufficient, it's possible to use Touchable to create fully custom interactions using either Reanimated or Animated API.
If you were using RectButton or BorderlessButton in your app, you should replace them with Touchable. Check out the full code in the example section below.
To replace RectButton with Touchable, simply add activeUnderlayOpacity={0.105} to your Touchable. This will animate the underlay when the button is pressed.
<Touchable
...
activeUnderlayOpacity={0.105}/>Replacing BorderlessButton with Touchable is as easy as replacing RectButton. Just add activeOpacity={0.3} to your Touchable. This will animate the whole component when the button is pressed.
<Touchable
...
activeOpacity={0.3}/>If you were using the specialized touchable components (TouchableOpacity, TouchableHighlight, TouchableWithoutFeedback, or TouchableNativeFeedback), you can replicate their behavior with the unified Touchable component.
To replace TouchableOpacity, add activeOpacity={0.2}.
<Touchable
...
activeOpacity={0.2}/>To replace TouchableHighlight, add activeUnderlayOpacity={1}.
<Touchable
...
activeUnderlayOpacity={1}/>To replace TouchableWithoutFeedback, use a plain Touchable.
<Touchable ... />To replicate TouchableNativeFeedback behavior, use the androidRipple prop. Make sure to set foreground={true}.
<Touchable
...
androidRipple={{
foreground: true,
}}/>In this example we will demonstrate how to recreate RectButton and BorderlessButton effects using the Touchable component.
<CollapsibleCode label="Show full example" expandedLabel="Hide full example" lineBounds={[7, 40]} src={` import React from 'react'; import { StyleSheet, Text } from 'react-native'; import { GestureHandlerRootView, Touchable, } from 'react-native-gesture-handler';
export default function TouchableExample() { return ( <Touchable onPress={() => { console.log('BaseButton built with Touchable'); }} style={[styles.button, { backgroundColor: '#7d63d9' }]}> BaseButton
<Touchable
onPress={() => {
console.log('RectButton built with Touchable');
}}
style={[styles.button, { backgroundColor: '#4f9a84' }]}
activeUnderlayOpacity={0.105}>
<Text style={styles.buttonText}>RectButton</Text>
</Touchable>
<Touchable
onPress={() => {
console.log('BorderlessButton built with Touchable');
}}
style={[styles.button, { backgroundColor: '#5f97c8' }]}
activeOpacity={0.3}>
<Text style={styles.buttonText}>BorderlessButton</Text>
</Touchable>
</GestureHandlerRootView>
); }
const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center',
gap: 20,
}, button: { width: 200, height: 70, borderRadius: 15, alignItems: 'center', justifyContent: 'center', }, buttonText: { color: 'white', fontSize: 14, fontWeight: '600', }, }); `}/>
activeOpacity?: number;Defines the opacity of the whole component when the button is active.
defaultOpacity?: number;Defines the opacity of the whole component when the button is active. By default set to 1.
activeUnderlayOpacity?: number;Defines the opacity of the underlay when the button is active. By default set to 0.
defaultUnderlayOpacity?: number;Defines the initial opacity of underlay when the button is inactive. By default set to 0.
underlayColor?: string;Background color of the underlay. This only takes effect when activeUnderlayOpacity or defaultUnderlayOpacity is set.
exclusive?: boolean;Defines whether pressing this button prevents other buttons exported by Gesture Handler from being pressed. By default set to true.
<HeaderWithBadges platforms={['android']}>
touchSoundDisabled?: boolean;If set to true, the system will not play a sound when the button is pressed.
<CollapsibleCode label="Show composed types definitions" expandedLabel="Hide composed types definitions" lineBounds={[0, 1]} src={` onPressIn?: (e: GestureEvent) => void;
type GestureEvent = { handlerTag: number; numberOfPointers: number; pointerType: PointerType; pointerInside: boolean; }
enum PointerType { TOUCH, STYLUS, MOUSE, KEY, OTHER, } `}/>
Triggered when the button gets pressed (analogous to onPressIn in Pressable from RN core).
<CollapsibleCode label="Show composed types definitions" expandedLabel="Hide composed types definitions" lineBounds={[0, 1]} src={` onPressOut?: (e: GestureEvent) => void;
type GestureEvent = { handlerTag: number; numberOfPointers: number; pointerType: PointerType; pointerInside: boolean; }
enum PointerType { TOUCH, STYLUS, MOUSE, KEY, OTHER, } `}/>
Triggered when the button gets released or the pointer moves outside of the button area (analogous to onPressOut in Pressable from RN core).
onPress?: (pointerInside: boolean) => void;Triggered when the button gets pressed (analogous to onPress in Pressable from RN core).
onLongPress?: () => void;Triggered when the button gets pressed for at least delayLongPress milliseconds.
onActiveStateChange?: (active: boolean) => void;Triggered when the button transitions between active and inactive states. It passes the current active state as a boolean variable to the method as the first parameter.
delayLongPress?: number;Defines the delay, in milliseconds, after which the onLongPress callback gets called. By default set to 600.
<HeaderWithBadges platforms={['android']}>
<CollapsibleCode label="Show composed types definitions" expandedLabel="Hide composed types definitions" lineBounds={[0, 1]} src={` androidRipple?: PressableAndroidRippleConfig;
type PressableAndroidRippleConfig = { color?: (string | OpaqueColorValue); borderless?: boolean; radius?: number; foreground?: boolean; } `}/>
Configuration for the ripple effect on Android. If not provided, the ripple effect will be disabled. If {} is provided, the ripple effect will be enabled with default configuration.