Replies: 1 comment
-
We were able to achive showing a webView within the main window by creating a webView with size that fits in the body section of the main window. Showing and hiding the web view based on interactions.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are building a Tauri App with a left Side nav bar and right main content area. We have below use cases:
I created a webView on the main window with Tauri 2.0 using WebView and WebViewWindow API. When the web view is shown the Tauri app is not able to respond to user clicks on the side nav.
import { Webview } from "@tauri-apps/api/webview";
import { WebviewWindow } from "@tauri-apps/api/webviewWindow";
Reference: https://v2.tauri.app/reference/javascript/api/namespacewebview/
Beta Was this translation helpful? Give feedback.
All reactions