https://www.electronjs.org/docs/latest/api/web-contents
do we have something similar on Tauri? I'm trying to implement back and forth arrow keys for navigation.
here's how i'm configuring my window to render the webpage in the first place
{
"title": "Dimension",
"label": "primary",
"width": 1280,
"height": 720,
"url": "https://dimension.dev",
"userAgent": "[REDACTED]",
"hiddenTitle": true,
"titleBarStyle": "Overlay",
"visible": true,
"transparent": true
}
would appreciate help with the same, whether it's possible via js or rust.
Render and control web pages.