Fuse version 0.31.2
Mac OS Sierra 10.12.2
When I use a webview and a sidebar the sidebar is left behind the webview, I would like to see the sidebar in the background and use it as a menu.
How could I do it?
Fuse version 0.31.2
Mac OS Sierra 10.12.2
When I use a webview and a sidebar the sidebar is left behind the webview, I would like to see the sidebar in the background and use it as a menu.
How could I do it?
Hi!
The <NativeViewHost>
creates a new layer. In order to overlay something on top of the webview, it needs to be inside the same native view host, like this:
<NativeViewHost>
<Text>This is on top of the webview</Text>
<WebView />
</NativeViewHost>
Alternatively, you can use a trigger and turn on <NativeViewHost RenderToTexture="true" />
when the edge menu is activated.
(We are working on a better solution for scenarios like this for the future, for now this is the best we can do)