tom

Results 10 comments of tom

Hi, You're right, the call to api.ai is async, so you have to use it asynchronously. Also you should use the POST method instead of th GET method. Try something...

Woops, I didn't look right. Replace `app.post('/', ...) ` with `app.post('/webhook', ...) ` since it's the right path.

It seems that sometimes, the BottomSheetScrollView inside the BottomSheet is rendered with a height too big to be allowed to scroll (actually the height of its content). I reproduced the...

After further investigation, this seems not to be related to library upgrades. I can reproduce it with expo 0.49, even though this is way harder (React Native 0.72, Reanimated 3.6.1,...

I think the issue comes from this line in `DraggableFlatList.tsx` : ``` const panGesture = Gesture.Pan() .onBegin((evt) => { gestureDisabled.value = disabled.value; if (disabled.value) return; panGestureState.value = evt.state; }) .onUpdate((evt)...

Still having the same issue (EXC_BAD_ACCESS) on 8.2.0 (runtime 6.3.7)

Fwiw I realized on my side the issue was caused by this bug in Reanimated : https://github.com/software-mansion/react-native-reanimated/issues/7109 causing exiting animations not to unmount components. I still have issues with onPressIn...

@HayesGordon Still having the same issue with rive-react-native 8.1.0 Using `s.dependency "RiveRuntime", "6.3.3"` according to podspec Related to this issue on rive-ios: https://github.com/rive-app/rive-ios/issues/345

Using `` instead of `` in the provided snack allows the BottomSheet to display its content. https://gorhom.dev/react-native-bottom-sheet/components/bottomsheetview

Seems related to https://github.com/rive-app/rive-react-native/issues/261 and https://github.com/rive-app/rive-ios/issues/345 We previously had to downgrade from 7.3.0 to 7.2.0, I was hoping the version 8.0.0 wouldfix the issue but it does not. It's unfortunate...