All Projects → xotahal → react-native-pullable-view

xotahal / react-native-pullable-view

Licence: MIT license
No description, website, or topics provided.

Programming Languages

javascript
184084 projects - #8 most used programming language

React Native Pullable View

npm GitHub issues GitHub license

Implements component similar to calendar that you know from Calendar App by Google - you can pull down this calendar from toolbar.

Example

Example

Install

npm i react-native-pullable-view --save

Usage

import Pullable from 'react-native-pullable-view';

...

render() {
  return (
    <Pullable pullView={() => <View><Text>This view will be pulled down!</Text></View>}>
      <View>
        <Text>This view will be always shown on the screen</Text>
      </View>
    </Pullable>
  );
}
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].