Code Monkey home page Code Monkey logo

Comments (16)

grabbou avatar grabbou commented on July 22, 2024 3

Like ths:

<SideMenu
   animationFunction={animationFunction}
   animationStyle={animationStyle}>
    ...
</SideMenu>

with animationStyle to have scaled down & moved to the right menu:

const animationStyle = value => {
   return {
     transform: [{
        scale: value.interpolate({
          inputRange: [0, 100],
          outputRange: [1, 0.95]
        })
     }],
     left: value
  };
};

Optionally, you can provide custom animationFunction to change the speed, just like I did:

const animationFunction = (prop, value) => {
   return Animated.spring(prop, {
      toValue: value,
      friction: 8,
      tension: 50
   });
};

I think that could go into FAQ section or to examples/customAnimation.js since it's pretty cool one and one of the most popular side menu animations in native iOS apps AFAIK.

from react-native-side-menu.

alinz avatar alinz commented on July 22, 2024

I like the idea. I'd like to see if we can provide some fancy animations and expose a method which let's others override and implement a new animations.

from react-native-side-menu.

grabbou avatar grabbou commented on July 22, 2024

Yeah, just a method to get native props before updating. The other part is the animations (hard to tweak, but I am super excited to see new Animations API being implemented). Anyway, the approach with subclassing and exporting might be a good choice and I am not sure if we need any methods/callbacks as with ES6, it's super easy to do it.

from react-native-side-menu.

Kureev avatar Kureev commented on July 22, 2024

I gonna implement this in master right after 0.8.0 will become stable

from react-native-side-menu.

alinz avatar alinz commented on July 22, 2024

Agreed, 0.8 still very buggy at the moment. I stopped using it for production. Can't wait for stable release.

from react-native-side-menu.

grabbou avatar grabbou commented on July 22, 2024

It won't change, maybe 0.9 will be better, can you elaborate on that a bit? About to update to 0.8

from react-native-side-menu.

alinz avatar alinz commented on July 22, 2024

My app is relying on WebViewBridge and there is an open issue with react-native 0.7 and above facebook/react-native#2010 which prevents me to upgrade.

If your app is not using Higher Order Component or WebView, then you should be fine.

from react-native-side-menu.

Kureev avatar Kureev commented on July 22, 2024

In principle, we can try to implement it now with react-motion and freeze this version for react-native < 0.8. And in 0.8+ we can use Animated.

from react-native-side-menu.

alinz avatar alinz commented on July 22, 2024

@Kureev agreed, I really want to get my hands on both libraries. I will try to squeeze my time to implement the simple solution for this and let you know.

from react-native-side-menu.

Kureev avatar Kureev commented on July 22, 2024

Solved in 0.12.1

from react-native-side-menu.

bkniffler avatar bkniffler commented on July 22, 2024

Hey, how would something like @grabbou s work look like with the latest version?

from react-native-side-menu.

bkniffler avatar bkniffler commented on July 22, 2024

I absolutely agree that this component could greatly benefit from such examples, especially this one! Thanks for the explanation.

from react-native-side-menu.

Kureev avatar Kureev commented on July 22, 2024

@grabbou can you compose it an example or at least add a block into readme?

from react-native-side-menu.

grabbou avatar grabbou commented on July 22, 2024

Yeah, will add in a new example later today or at leat add a block (have to figure it out)

from react-native-side-menu.

cinder92 avatar cinder92 commented on July 22, 2024

any update about this theme? 👍

from react-native-side-menu.

nelsonprsousa avatar nelsonprsousa commented on July 22, 2024

Is there any update about this theme?

from react-native-side-menu.

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.