Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.02 KB

README.md

File metadata and controls

32 lines (27 loc) · 1.02 KB

react-native-grippable-view

Simple grippable component for React Native, powered by Animated API and some RxJS stuff.

Example

API

import React from 'react';
import { View, Image } from 'react-native'
import Grippable from 'react-native-grippable-view';

export default () => (
  <Grippable
    minHeight={30} // initial height of view
    maxHeight={400} // maximum expanded height of view
    initExpandHeight={200} // initial height of view to expand
    gripperStyles={{ height: 20 }} // styles for gripper component wrapper
    animationOptions={{ duration: 500 }} // additional options for animation
    getGripperComponent={() => <Image source={require('./gripper.png')} />} // the gripper component getter
  >
    <View>
      // some code
    </View>
  </Grippable>
)

TODO

  • Grippable directions (now only "top to bottom")
  • Component methods (e.g. expand / collapse)
  • Events