我已经阅读了rnn wix文档,但似乎找不到任何内容。我附上了我目前所拥有图像的链接。 但是我需要sideMenu覆盖topBar,而是在它下面打开。
root: {
stack: {
id: 'App',
children: [
{
sideMenu: {
id: "sideMenu",
left: {
component: {
id: "Drawer",
name: "flex.Drawer"
},
width: 260,
height: 270,
visible: false,
enabled: false
},
center: {
stack: {
id: "AppRoot",
children: [{
component: {
id: "EditProfile",
name: "flex.EditProfile",
}
}]
}
},
// right: {
// component: {}
// }
}
}
],
}
}
})```
I expect that the side Menu opens on top of the navBar.