File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
website/documentation/content Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ def urls_demo():
29
29
You can enable native mode for NiceGUI by specifying `native=True` in the `ui.run` function.
30
30
To customize the initial window size and display mode, use the `window_size` and `fullscreen` parameters respectively.
31
31
Additionally, you can provide extra keyword arguments via `app.native.window_args` and `app.native.start_args`.
32
- Pick any parameter as it is defined by the internally used [pywebview module](https://pywebview.flowrl.com/guide/ api.html )
32
+ Pick any parameter as it is defined by the internally used [pywebview module](https://pywebview.flowrl.com/api)
33
33
for the `webview.create_window` and `webview.start` functions.
34
34
Note that these keyword arguments will take precedence over the parameters defined in `ui.run`.
35
35
36
36
Additionally, you can change `webview.settings` via `app.native.settings`.
37
37
38
38
In native mode the `app.native.main_window` object allows you to access the underlying window.
39
- It is an async version of [`Window` from pywebview](https://pywebview.flowrl.com/guide/ api.html#window-object ).
39
+ It is an async version of [`Window` from pywebview](https://pywebview.flowrl.com/api/#webview-window ).
40
40
''' , tab = lambda : ui .label ('NiceGUI' ))
41
41
def native_mode_demo ():
42
42
from nicegui import app
You can’t perform that action at this time.
0 commit comments