Answer by Rohan Kangale for How to use TouchableNativeFeedback in React...
Firstly, you need to import the respective dependency(TouchableNativeFeedback): import { TouchableNativeFeedback, View, Text } from 'react-native'; After this, you can use it as:...
View ArticleAnswer by jsina for How to use TouchableNativeFeedback in React native android?
best practice to use TouchableNativeFeedback.Ripple is to check the api version of devices first, because this background type is available on Android API level 21+. import { Platform } from...
View ArticleAnswer by Karthick Kumar for How to use TouchableNativeFeedback in React...
It can be implement like this, see the react-native documentation for more functionality. <TouchableNativeFeedback background={TouchableNativeFeedback.Ripple('red')}> <View...
View ArticleAnswer by Pierre Charpentier for How to use TouchableNativeFeedback in React...
require isn't necessary. TouchableNativeFeedback is like Text, Image or View. var Button= require('react-native-button'); var { AppRegistry, StyleSheet, Text, View, Image, TouchableNativeFeedback, } =...
View ArticleHow to use TouchableNativeFeedback in React native android?
I am getting warnings while using this component. Trying to use this component as a button. I tried require('TouchableNativeFeedback') but no use. I also tried to npm install TouchableNativeFeedback,...
View Article