Webview style UI with Tauri

2024-08-01 Thread oyster
maybe it is a solution: 1. code key module in nim, but release it as DLL or PYD for Python 2. coin the gui with which can use any web browser as frontend in Python in web application way or standalone binary way

Webview style UI with Tauri

2024-08-01 Thread ITwrx
It might be interesting to look at fasthtml: Perhaps they used htmx in a smart way. When i used htmx in the past i was not happy with how it worked out once the front end got "too" dynamic. It's very possible i was not using it in the best way. It might have been back when

Webview style UI with Tauri

2024-07-28 Thread mildred
What I'd like to do is to have server side UI using a WebView, for apps that needs rich UI. Something like htmx, but for the moment, all webview UIs are focused on JavaScript UI code instead. I'll probably get this rolling when I have time and need for this in a next project.

Webview style UI with Tauri

2024-07-27 Thread wwderw
I've been happy with a little c lib called WebUI, if I go the web route versus some other immediate mode GUI. Already has nim bindings for it as well. Nice thing is that it compiles nicely with using Zig CC, I tend to like to use that compiler as that nicely links with musl for my linux builds.

Webview style UI with Tauri

2024-07-27 Thread mildred
Proper system intégration, no browser UI, no leak over localhost

Webview style UI with Tauri

2024-07-26 Thread Araq
What is the benefit over `browsers.openDefaultBrowser`?

Webview style UI with Tauri

2024-07-26 Thread mildred
When a webview style UI is required, I looked towards [Tauri](https://tauri.app/) as it provides a mean to create full apps using the system webview (the webview is not bundled within the app itself like electron and so many others). However it was not possible to use it with Tauri. Very recent