Skip to content

bitscheme/rn-swipeable-panel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Default Full width Close Button


React Native Swipeable Panel

React Native Panel animates up and controllable with pan gestures

npm version


React Native Swipeable Panel that animate from bottom and controllable with pan gestures. You can extend panel by swiping up, make it small or close by swiping down with pan gestures. Feel free to redesign inside of panel.

Getting started

$ npm install rn-swipeable-panel --save

or

$ yarn add rn-swipeable-panel

Example

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';

import SwipeablePanel from 'rn-swipeable-panel';


export default class App extends Component {
    constructor(props) {
        super(props);
        this.state = {
            swipeablePanelActive: false
        };
    }

    componentDidMount = () => {
        this.openPanel();
    };

    openPanel = () => {
        this.setState({ swipeablePanelActive: true });
    };

    closePanel = () => {
        this.setState({ swipeablePanelActive: false });
        setTimeout(() => {
        	this.openPanel();
        }, 1000);
    };

    render() {
        return (
            <View style={styles.container}>
                <Text style={styles.welcome}>Welcome to React Native!</Text>
                <Text style={styles.instructions}>To get started, edit App.js</Text>
                <SwipeablePanel
					fullWidth
					isActive={this.state.swipeablePanelActive}
					onClose={this.closePanel}
					onPressCloseButton={this.closePanel}
				>
					<PanelContent /> {/* Your Content Here */} 
				</SwipeablePanel>
            </View>
        );
    }
}

Options


Properties Type Description Default
isActive bool Show/Hide the panel false
onClose Function Fired when the panel is closed
onPressCloseButton Function Use this if you want to show close button. Using same function with onClose is recommended as example above
fullWidth bool Set true if you want to make full with panel false

Releases

  • 1.0.2 - Initial release
  • 1.0.3 - Full width option
  • 1.0.4 - Prop and styling fixes
  • 1.0.5 - Disable swipe up when panel is full open
  • 1.0.6 - Scrollable content and close button
  • 1.0.7 - Changes for nested scrollview usage (Horizontal scrollview)
  • 1.0.8 - Optional close button

TODOs

  • Add full width option
  • Disable swipe up when panel is full open
  • Scrollable content
  • Add close button
  • Horizontal scrollview inside the panel
  • Optional close button

About

Swipeable bottom panel for React Native 📱

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%