React Native Drawer

Published in UI
September 29, 2022
1 min read
React Native Drawer

Installation

npm install --save react-native-drawer

Usage

import Drawer from 'react-native-drawer'
class Application extends Component {
closeControlPanel = () => {
this._drawer.close()
};
openControlPanel = () => {
this._drawer.open()
};
render () {
return (
<Drawer
ref={(ref) => this._drawer = ref}
content={<ControlPanel />}
>
<MainView />
</Drawer>
)
}
})

https://github.com/root-two/react-native-drawer


Share


Previous Article
Dash Border
Next Article
Sliding Up Panel
Awesome React Native
© 2025, All Rights Reserved.

Social Media