Logo Awesome React

Awesome React

The Power of Interpolation

Talk recording from React Day Berlin 2017 Conference https://reactday.berlin

One of the biggest benefits when choosing React Native is its declarative nature. Instead of laying out elements on screen manually, we tell React how our interface should look like for a given state. That, combined with React Native taking care of rendering, allows us to write things that would be hard or even impossible otherwise. One of such things are animations. Historically, we used to write them in an imperative and stateful manner. By design, these are hard to debug and - most importantly compose. In this talk we will take a look at writing animations in React Native by using Animated module.