donutdonate
donutdonate
Faced with the same issue on Android/iOS. onPress action doesn't work if iconButton was pressed, only keyboard hides and textinput looses focus.
@Arjun059 Hi! In my case the problem was with ScrollView settings. If you use ScrollView set the keyboardShouldPersistTaps prop to "handled", so the keyboard will not dismiss automatically when the...
@taekeun-two faced with the same problem, just check if you reinstall pods with cd ios && pod install. Also you can try to clean your build folder and remove project...
fix it by adding to my android/build.gradle ``` allprojects{ repositories{ maven { url('$rootDir/../../../node_modules/react-native-video-cache-control/android/libs') } } } ``` and adding in node_modules/react-native-video-cache-control/android/build.gradle ``` repositories { ... maven { url("$rootDir/../node_modules/react-native-video-cache-control/android/libs") } ......