Webview on Android can't be clicked if wrapped in Touchable
This is Android specific problem in react native app. To be more precise, this issue can be produced on Samsumg S6 Edge, Pixel 2 etc. and it works with other Android phones. I have a webview (which...
View ArticleHow do I use React Native onLongPress properly?
I have a simple piece of code that's just a TouchableOpacity with a onLongPress prop, but it does not seem to be working. <TouchableOpacity delayLongPress={10}...
View Articlereact-native TouchableNativeFeedback onPress not working
I have created a composed component to compose TouchableNativeFeedback to wrapperComponent. export default function withFeedback2( WrappedComponent ) { return class extends BaseComponent {...
View ArticleNested touchables in react native event propagation not working
I have a TouchableWithoutFeedback (child) with an onLongPress method inside a TouchableOpacity (parent) with an onPress method.What I want is that a regular press (not long press) on the child...
View ArticleHandling on press event for every word in long text rendered on the screen in...
I have a long text (for example, part of some book), and I need to render it on the screen but I need every word to handle touches. On touch I want to show the translation of this word. Is there any...
View ArticleonPress handler not being fired over TouchableHighlight on Android
We are experiencing a weird issue. The thing is that when you press the button, for some reason the Highlight to the underlayColor is occurring but the Touchable is not firing the onPress handler. The...
View ArticleTouchableOpacity outside parent View in absolute positive not works react native
I was making Picker component but what I found is Touchable Opacity in absolute positions outside from it's parent view not works.const App = () => { const data = [2, 3, 4, 23] const [isOpen,...
View Article