Alexander L.

Results 23 comments of Alexander L.

@andreialecu Can you still navigate by pressing the tabs when the header is not fully collapsed or extended (e.g. extended 50%)

@andreialecu even with the workaround, there are still issues. Scrollview for example does not snap anymore and navigating between tabs by clicking the header does not work as well.

For me updating to JDK 11 unfortunaltly does not work. To use react-native-vision-camera I need sdk 31 though. If anybody has an idea how to solve this dilemma I would...

I was able to solve it. I had to upgrade the jdk that is referenced in JAVA_HOME in the environment variables, not only in Android studio.

> We ran into this issue, too. [react-native-firebase](https://github.com/invertase/react-native-firebase) `15.x` requires `use_frameworks!`, per: > > https://rnfirebase.io/#altering-cocoapods-to-use-frameworks > > For us, the solution was to downgrade `react-native-firebase` to `14.x` (and disable `use_frameworks!`)...

> @Neklan You can apply that patch with the following patch script and [patch-package](https://www.npmjs.com/package/patch-package), > > ```diff > diff --git a/node_modules/react-native-vision-camera/ios/Frame Processor/FrameProcessorPlugin.h b/node_modules/react-native-vision-camera/ios/Frame Processor/FrameProcessorPlugin.h > index a2ccdcb4..7c9690e0 100644 > ---...

I have the same bug. Here is a reproducible code snippet. I'm using the latest RN (0.70.4) and reanimated (2.12.0) ``` import React from 'react'; import {Button, View, StyleSheet, StatusBar}...

I´m trying to implement this solution with SectionList right now. Regarding the limitations of point 4, are you referring to the fact that the only scrollTo function that is supportted...

@jehartzog `scrollToLocation` expects `itemIndex` and `sectionIndex`. Both can be set to 0 though. With `viewOffset` you can then control the scrolling position with the use of pixel like in your...

I investigated further. To share my current progress. It seems like `onMomentumEnd` is not being called when using a `ScrollView`.: https://github.com/PedroBern/react-native-collapsible-tab-view/blob/01b5a5a37675300921a2351e98eb4648bff2a7a8/src/hooks.tsx#L442 Really weird. Seems like there is some sort of...