<!-- Description:- I defined TouchableOpacity and wrap touchableOpacity with InputAccessoryView. so when keyboard open in device. when user clicks on InputAccessoryView , it doesn't fire onPress event of touchableOpacity. --> React Native version: <!-- System: OS: macOS 10.14.6 CPU: (4) x64 Intel(R) Core(TM) i3-8100B CPU @ 3.60GHz Memory: 19.15 MB / 8.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 10.16.3 - /usr/local/bin/node npm: 6.9.0 - /usr/local/bin/npm SDKs: iOS SDK: Platforms: iOS 12.4, macOS 10.14, tvOS 12.4, watchOS 5.3 IDEs: Android Studio: 3.4 AI-183.6156.11.34.5692245 Xcode: 10.3/10G8 - /usr/bin/xcodebuild npmPackages: react: 16.8.6 => 16.8.6 react-native: 0.60.4 => 0.60.4 npmGlobalPackages: react-native-cli: 2.0.1 --> Describe what you expected to happen: when user press on touchableopacity it should show alert popup Snack, code example, screenshot, or link to a repository: <!-- Code:- <InputAccessoryView nativeID={'1'}> <TouchableOpacity style={styles.nextWholeViewStyle} onPress={() => { alert('ds') }} > <Text style={styles.nextTextStyle} > Next </Text> </TouchableOpacity> </InputAccessoryView> -- --> 