redpanda-bit

Results 20 comments of redpanda-bit

same for: iOS 11 React-Native:0.56.0 react-native-blur: 3.2.2 Xcode 9 Simulator is 100%. Gray background on actual device. Can we get some traction on this? Changing immediate parent background does not...

I was unable to reproduce despite following the steps. Tested on iPhone 13, iOS 15.2. `onRefresh` gets called every single time.

I did the steps below 1. `npx react-native init AwesomeApp --version=0.71.3` 2. cd in folder 3. run `npm install` 4. cd into ios 5. run `pod install` 6. copied and...

Yes, that worked for me after using `NO_FLIPPER=1 USE_FABRIC=1 USE_HERMES=1 RCT_NEW_ARCH_ENABLED=1 pod install`. I am able to reproduce the issue.

I'm adding a few breakpoints on the native side to see if I find something. Also, adding a custom refreshControl component completely disables the onRefresh callback. Pulled down to refresh...

Might need to update designs temporarily to have a refresh button instead of pull-to-refresh. Or have a SectionList for the second list. Both approaches are disappointing but I can't remember...

@coolersham did you end up finding a way to solve this?

Are you able to post your implementation of this? I installed react-native-interactable on a new `npx [email protected] init AwesomeApp` app and it works as expected with the implementation below. ```jsx...

I was able to replicate with the code you provided, thank you. Would using `onDrag={console.log}` be enough for your use-case? I spent a long time trying to find the cause...

If you need something to update as the element moves you can try adding something on the native side of react-native-interactable, somewhere around this line https://github.com/wix/react-native-interactable/blob/master/lib/android/src/main/java/com/wix/interactable/InteractableView.java#L248