Rasita Satianrapapong

Results 7 comments of Rasita Satianrapapong

I also faced this issue. I noticed `paginationIndex` props of `PaginationComponent` always gives correct index. I found the value can be derived from parameters of `onViewableItemsChanged`. So here is my...

Do you have both `@react-native-community/blur` and `react-native-blur` in package.json? Make sure it has only `@react-native-community/blur` and `react-native-blur` is unlinked.

`react-native run-android --port XX` seems to only affect the installed app, not the packager it starts. For example, if packager has not started, `react-native run-android --port 1234` starts packager listening...

I fixed this by: 1. Create `RNFLAnimatedImage.podspec` to package root with following content: ``` require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = "RNFLAnimatedImage" s.version = package['version'] s.summary...

I simply upgraded the library from 0.35.1 to 0.36.4 and removed `requestLegacyExternalStorage` from `AndroidManifest.xml`. Now I can pick and crop an image on Android 11 devices without any error. Is...

> @PaperMonster did you test on Android 10 after your changes? Yes I did. There was no problem. Android 10 never had problem before and after the changes in target...

I managed to resolve the warning from Google by doing following: 1. Remove READ_MEDIA_IMAGES and READ_MEDIA_VIDEO from Android manifest 2. Don't request these two permissions in runtime (just to be...