Skip to main content

Touchable

API documentation for the React Native Touchable component. Learn about the available props.

Import#

import { Touchable } from "@react-native-material/core";// orimport Touchable from "@react-native-material/core/Touchable";

Props#

type TouchableVariant = "highlight" | "native-feedback" | "opacity" | "without-feedback";
export interface TouchableProps  extends Partial<Record<PlatformOSType, TouchableVariant>>,    TouchableHighlightProps,    TouchableNativeFeedbackProps,    TouchableOpacityProps,    TouchableWithoutFeedbackProps {  overlayColor?: string | undefined;}