import React, { Component } from 'react'; import { StyleSheet, View, Text } from 'react-native'; import Interactable from '../../Interactable'; export default class MoreDrawers extends Component { render() { return ( Default drawer Drawer with limits Limits with bounce Drag via spring Drag with spring resistance ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'space-around', backgroundColor: 'white', }, cover: { left: 0, right: 0, height: 75, backgroundColor: '#e0e0e0', justifyContent: 'center', }, label: { textAlign: 'center', fontSize: 18, }, });