I'm using the native base
library. I want to use the Drawer
component, but I want to set it to the right position. How can I do this, as there is no property?
答案 0 :(得分:0)
您可以使用side
道具[*]。
<Drawer
side="right"
ref={ref => {
this.drawer = ref;
}}
content={<SideBar navigator={this.navigator} />}
onClose={() => this.closeDrawer()}
/>