Skip to main content
Version: Next

TouchableNativeFeedback

tip

If you're looking for a more extensive and future-proof way to handle touch-based input, check out the Pressable API.

An Android only wrapper for making views respond properly to touches. This component uses native state drawable to display touch feedback.

At the moment it only supports having a single View instance as a child node, as it's implemented by replacing that View with another instance of RCTView node with some additional properties set.

Background drawable of native feedback touchable can be customized with background property.

Exampleโ€‹


Reference

Props
Android
โ€‹

TouchableWithoutFeedback Propsโ€‹

Inherits TouchableWithoutFeedback Props.


backgroundโ€‹

Determines the type of background drawable that's going to be used to display feedback. It takes an object with type property and extra data depending on the type. It's recommended to use one of the static methods to generate that dictionary.

Type
backgroundPropType

useForegroundโ€‹

Set to true to add the ripple effect to the foreground of the view, instead of the background. This is useful if one of your child views has a background of its own, or you're e.g. displaying images, and you don't want the ripple to be covered by them.

Check TouchableNativeFeedback.canUseNativeForeground() first, as this is only available on Android 6.0 and above. If you try to use this on older versions you will get a warning and fallback to background.

Type
bool

nextFocusDownโ€‹

TV next focus down (see documentation for the View component).

Type
number

nextFocusForwardโ€‹

TV next focus forward (see documentation for the View component).

Type
number

nextFocusLeftโ€‹

TV next focus left (see documentation for the View component).

Type
number

nextFocusRightโ€‹

TV next focus right (see documentation for the View component).

Type
number

nextFocusUpโ€‹

TV next focus up (see documentation for the View component).

Type
number

Methodsโ€‹

SelectableBackground()โ€‹

tsx
static SelectableBackground(
rippleRadius: number | null,
): ThemeAttributeBackgroundPropType;

Creates an object that represents android theme's default background for selectable elements (?android:attr/selectableItemBackground). rippleRadius parameter controls the radius of the ripple effect.


SelectableBackgroundBorderless()โ€‹

tsx
static SelectableBackgroundBorderless(
rippleRadius: number | null,
): ThemeAttributeBackgroundPropType;

Creates an object that represent android theme's default background for borderless selectable elements (?android:attr/selectableItemBackgroundBorderless). Available on android API level 21+. rippleRadius parameter controls the radius of the ripple effect.


Ripple()โ€‹

tsx
static Ripple(
color: ColorValue,
borderless: boolean,
rippleRadius?: number | null,
): RippleBackgroundPropType;

Creates an object that represents ripple drawable with specified color (as a string). If property borderless evaluates to true the ripple will render outside of the view bounds (see native actionbar buttons as an example of that behavior). This background type is available on Android API level 21+.

Parameters:

NameTypeDescription
color
Required
stringThe ripple color.
borderless
Required
booleanIf the ripple can render outside its bounds.
rippleRadius?numberControls the radius of the ripple effect.

canUseNativeForeground()โ€‹

tsx
static canUseNativeForeground(): boolean;