All Projects → xotahal → React Native Motion

xotahal / React Native Motion

Licence: mit
Animate it! Easily!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Motion

Awesome Product Design
A collection of bookmarks, resources, articles for product designers.
Stars: ✭ 1,679 (-16.34%)
Mutual labels:  ux
Nativelogin
Authorization form in native iOS style
Stars: ✭ 140 (-93.02%)
Mutual labels:  ux
Web Vitals Extension
A Chrome extension to measure essential metrics for a healthy site
Stars: ✭ 1,943 (-3.19%)
Mutual labels:  ux
Liquid
Create a playful backsplash in SwiftUI.
Stars: ✭ 127 (-93.67%)
Mutual labels:  ux
Overlap
Tiny iOS library to achieve overlap visual effect
Stars: ✭ 133 (-93.37%)
Mutual labels:  ux
Rn Placeholder
🏖️ Display some placeholder stuff before rendering your text or media content in React Native
Stars: ✭ 1,934 (-3.64%)
Mutual labels:  ux
Frontend
🌌 Vue based front-end.
Stars: ✭ 121 (-93.97%)
Mutual labels:  ux
Material
A UI/UX framework for creating beautiful applications.
Stars: ✭ 11,870 (+491.43%)
Mutual labels:  ux
Kaiju
A drag and drop web editor for React components.
Stars: ✭ 135 (-93.27%)
Mutual labels:  ux
Drag Select Recyclerview
👇 Easy Google Photos style multi-selection for RecyclerViews, powered by Kotlin and AndroidX.
Stars: ✭ 1,818 (-9.42%)
Mutual labels:  ux
React Native Pulse
React Native Pulse Animation
Stars: ✭ 129 (-93.57%)
Mutual labels:  ux
Motion
A library used to create beautiful animations and transitions for iOS.
Stars: ✭ 1,726 (-14%)
Mutual labels:  ux
Firecrasher
FireCrasher is a Uncaught Exceptions recovery library for android
Stars: ✭ 143 (-92.87%)
Mutual labels:  ux
Syblinkanimationkit
SYBlinkAnimationKit is a blink effect animation framework for iOS, written in Swift.
Stars: ✭ 126 (-93.72%)
Mutual labels:  ux
Fos
Web Components to turn your web app into a fake operating system
Stars: ✭ 151 (-92.48%)
Mutual labels:  ux
Ui Ux
📝 Curated list for UI/UX Designers
Stars: ✭ 125 (-93.77%)
Mutual labels:  ux
You Dont Know Ui
Learn how to build universal, modern and scalable user interfaces
Stars: ✭ 140 (-93.02%)
Mutual labels:  ux
Dial
A Rotary Dial menu for input numbers
Stars: ✭ 162 (-91.93%)
Mutual labels:  ux
Nativebase Sketch Template
Sketch Template for NativeBase components
Stars: ✭ 157 (-92.18%)
Mutual labels:  ux
Material Theme
Material Theme, the most epic theme for Sublime Text 3 by Mattia Astorino
Stars: ✭ 11,093 (+452.72%)
Mutual labels:  ux

React Native Motion

Change your application from the left one to the right one! Animate it! Easily! Animated Transition Article or Animated Graph Article

Getting Started

$ yarn add react-native-motion

Usage of SharedElement

We need to specify source and destination for shared element. This library then will move the shared element from source position to destination position.

class Main extends Component {
  render() {
    return (
      <SharedElementRenderer>
        <App />
      </SharedElementRenderer>
    );
  }
}
// List items page with source of SharedElement
import { SharedElement } from 'react-native-motion';

class ListPage extends Component {
  render() {
    return (
      <SharedElement id="source">
        <View>{listItemNode}</View>
      </SharedElement>
    );
  }
}
// Detail page with a destination shared element
import { SharedElement } from 'react-native-motion';

class DetailPage extends Component {
  render() {
    return (
      <SharedElement sourceId="source">
        <View>{listItemNode}</View>
      </SharedElement>
    );
  }
}

Playground for react-native-motion library

Author

Jiri Otahal
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].