
Vertical Step indicator
May 06, 2023
1 min
npm install --save react-native-drawer
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
Quick Links
Legal Stuff





