Introduction to Gesture Handler 2 (React Native)

Поділитися
Вставка
  • Опубліковано 3 лют 2025

КОМЕНТАРІ • 43

  • @Reactiive
    @Reactiive  3 роки тому +18

    I'm sorry, I forgot to wrap the main component with the GestureHandlerRootView (needed for Android otherwise it won't work). Of course I fixed it in the GitHub repo 🐢

  • @DashFactsCentral
    @DashFactsCentral 2 місяці тому

    Nice tutorial, good introduction to gesture handler and reanimated!

  • @ashishafk
    @ashishafk 2 роки тому

    Just want to say thanks, i have been trying to learn animations from long time.

  • @bettyaddaemensah9830
    @bettyaddaemensah9830 18 днів тому

    Great tutorial. Thank you very much

  • @jaybhattarai
    @jaybhattarai 3 роки тому +3

    Thanks for the video. I was wondering how to get the context, I didn't know that we have to create it by ourself. Thanks a lot

    • @Reactiive
      @Reactiive  3 роки тому

      Hi Jay, glad you liked it 😁

  • @gouravbhati3374
    @gouravbhati3374 3 роки тому +2

    Awesome video very nice and simple explanation

  • @fooked1
    @fooked1 2 роки тому

    Very grateful for this content. Thank you.

  • @joseph_oluwayomi
    @joseph_oluwayomi 3 роки тому

    Your videos have always made React native animation easier for me. Funny how this animation is the next on my animation task list.
    I would just added the part where the circles snap into the close icon at the bottom of the screen.
    Thanks for your videos 😊

    • @Reactiive
      @Reactiive  3 роки тому +1

      Hi Cremirdevio, thanks for your feedback. I'm glad you find it helpful 🌟

  • @fabrizia5777
    @fabrizia5777 3 роки тому +1

    Stunning explanation! Thanks😎

  • @collinsk8754
    @collinsk8754 10 місяців тому

    Wonderful tutorial! 👏👏

  • @CoryTheSimmons
    @CoryTheSimmons Рік тому

    Great tutorial, thank you!

  • @huyphan377
    @huyphan377 3 роки тому +2

    awesome thanks

  • @programmingpersistence5716
    @programmingpersistence5716 Рік тому

    this is really good thanks

  • @ramielwan48
    @ramielwan48 3 роки тому +1

    please keep on starting with a scratch project. Good job

    • @Reactiive
      @Reactiive  3 роки тому

      Hi Rami, thanks a lot for the feedback. I will always try to make the context of the animations understandable 😁

  • @Lorofol
    @Lorofol 2 роки тому +1

    How can I ignore the gesture detector when clicking buttons within the view?

  • @growthcode4121
    @growthcode4121 2 роки тому

    gracias, es un excelente video

  • @bayramarif526
    @bayramarif526 3 роки тому +2

    I wonder .. by that way, is it possible make animated placement some items. For example you we have a old school phone image on the screen and numbers around it coming with rotation animation and place them to their places.

    • @Reactiive
      @Reactiive  3 роки тому

      Hi Bayram, are you looking for something like that ua-cam.com/video/Th6WxfhZsAM/v-deo.html ?

    • @bayramarif526
      @bayramarif526 3 роки тому

      @@Reactiive yes i know that one but your solutions seemes easier to me

  • @code-island
    @code-island 3 роки тому +1

    Great !!!

  • @shebeeradimaly6125
    @shebeeradimaly6125 2 роки тому

    thanks boss

  • @wahyudifams8696
    @wahyudifams8696 2 роки тому

    Why we need useDerivedValue? I just read some references but still confuse

  • @SO-xs6wu
    @SO-xs6wu 3 роки тому

    Thank u for this amazing Video . Can you make more videos about rngh2 cause there is no content on UA-cam about it just this one may be

  • @DrKenzoT
    @DrKenzoT 3 роки тому +1

    Hey, I was playing with RNGH 2 and was creating a bottom sheet, the problem I'm having is when I scroll the component it works fine but when I keep my finger on one point for longer period the component starts shaking up and down. Any idea why?

    • @Reactiive
      @Reactiive  3 роки тому

      That's quite strange, what callbacks are you using to handle the BottomSheet? By the way, although you probably already know it, check out this package github.com/gorhom/react-native-bottom-sheet

    • @DrKenzoT
      @DrKenzoT 3 роки тому

      @@Reactiive appreciate the reply man. I'm not using any callbacks for now, just toggling the bottom sheet inside a modal, trying to create something like Facebook used to do with comments, once the use scrolls down the bottom-sheet it closes when its halfway down. I know about this library but its fun to create it by yourself you know.

  • @haripriyadasari
    @haripriyadasari Рік тому

    please make video on collapsable tool bar in react native

  • @rohan7011
    @rohan7011 2 роки тому

    how to access the numberOfTaps function from GestureDetector?

  • @audunhilden
    @audunhilden Рік тому

    W tutorial

  • @StiekemeHenk
    @StiekemeHenk Рік тому

    I'm going crazy, I'm trying to handle up to 10 fingers on the screen, they need to get a dot under them while they're on the screen and animate in, during and out. And I can't figure out how to even do multiple fingers.

  • @АртемК-п7б
    @АртемК-п7б 3 роки тому

    Hi! Have you encountered a rendering bug on Andriod, when using entering props ?
    Example: I have an flat list (data = array of todo items)
    FlatList is rendering an Animated.View from reanimated 2, and sending entering props (e.g ...)
    and when I'm deleting an item of list, i have a rendering bug - the new state is rendering on top of the old one (

    • @Reactiive
      @Reactiive  3 роки тому

      Hi, to be honest I've encountered the same bug but I didn't fix it properly (I've used a ScrollView instead 🙄)

  • @MahbuburRahman-uc7np
    @MahbuburRahman-uc7np 2 роки тому

    What Vscode theme is he using?? Anyone

  • @mudandmoss4132
    @mudandmoss4132 3 роки тому

    Do you need to use useDerivedValue? Can you not just wrap the shared value with a withSpring in the useAnimatedStyle?

    • @Reactiive
      @Reactiive  3 роки тому

      Hi mud, thanks for your question. If the purpose is to make a spring animation, you can definitely avoid the useDerivedValue hook. In this specific example I use it in order to create the "follow" effect. In the example you can see how I'm able to create the "follow" effect by using the output of the derived values. Let me know if this make sense to you 😁

  • @muhsinabbas8230
    @muhsinabbas8230 3 роки тому

    how to set inner shadow in react native

  • @anantmouraya8113
    @anantmouraya8113 Рік тому

    Imagine TranslateZ ☠️