Giter Club home page Giter Club logo

Comments (6)

LeslieOA avatar LeslieOA commented on July 23, 2024 2

I get the above error every time I try to use react-native-raw-bottom-sheet.

You can use useNativeDriver={false}, but it would be great to figure out which animations/transitions trigger this in the module.

<RBSheet
  ref={refRBSheet}
  useNativeDriver={false}
>
  ...
</RBSheet>

from react-native-raw-bottom-sheet.

nelson-david avatar nelson-david commented on July 23, 2024

I've been facing this same issue for days. I had to make peace with the fact I wasn't going to use "useNativeDriver".

Well, after seeing the issue you opened, I decided to actually find a fix for it and I did. I've created a pull request and hopefully it will get merged by @nysamnang.

But here's what you can do for now.

Open the package "react-native-raw-bottom-sheet" in your node_modules folder and navigate to "src/index.js"
You will see this portion of code

<Animated.View testID="AnimatedView" {...(dragOnContent && panResponder.panHandlers)} // Attach pan handlers to content if dragOnContent is true style={[ styles.container, {transform: pan.getTranslateTransform()}, {height: animatedHeight}, customStyles.container, ]}> {draggable && ( // Show draggable icon if set it to true <View testID="DraggableView" {...(!dragOnContent && panResponder.panHandlers)} // Attach pan handlers to draggable icon if dragOnContent is false style={styles.draggableContainer}> <View testID="DraggableIcon" style={[styles.draggableIcon, customStyles.draggableIcon]} /> </View> )} {children} </Animated.View>

replace it with

<Animated.View testID="AnimatedView" {...(dragOnContent && panResponder.panHandlers)} // Attach pan handlers to content if dragOnContent is true style={[ styles.container, {transform: pan.getTranslateTransform()}, {height: useNativeDriver?height:animatedHeight}, customStyles.container, ]}> {draggable && ( // Show draggable icon if set it to true <View testID="DraggableView" {...(!dragOnContent && panResponder.panHandlers)} // Attach pan handlers to draggable icon if dragOnContent is false style={styles.draggableContainer}> <View testID="DraggableIcon" style={[styles.draggableIcon, customStyles.draggableIcon]} /> </View> )} {children} </Animated.View>

from react-native-raw-bottom-sheet.

abba-danmusa avatar abba-danmusa commented on July 23, 2024

Oh, Thank you, @nelson-david, but I've already moved on to use '@gorhom/bottom-sheet', and it works perfectly.

Nevertheless, thank you so much, indeed, I will try that next time.

from react-native-raw-bottom-sheet.

zulfio avatar zulfio commented on July 23, 2024

Oh, Thank you, @nelson-david, but I've already moved on to use '@gorhom/bottom-sheet', and it works perfectly.

Nevertheless, thank you so much, indeed, I will try that next time.

Well just remember, @gorhom/bottom-sheet is using reanimated and it's will make your app size bigger

from react-native-raw-bottom-sheet.

Raduc4 avatar Raduc4 commented on July 23, 2024

Any solution here?

from react-native-raw-bottom-sheet.

hoanglq avatar hoanglq commented on July 23, 2024

Cause: because you haven't set the height in the <RBSheet...> tag.
my example:

<RBSheet ...>
      <View style={{ height: '100%', width: '100%', backgroundColor: '#000', justifyContent: 'center', alignItems: 'center' }}>
                    <Text style={{ color: '#fff' }}>Hello</Text>
       </View>
</RBSheet>

from react-native-raw-bottom-sheet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.