Mehmet Ali Şipi
Mehmet Ali Şipi
Also fails [stbi_test.v](https://github.com/vlang/v/blob/master/vlib/stbi/stbi_test.v) with Clang 15.0.6 on Windows 11 with V 0.3.3 522a9f5 . Test command: `v -cc clang -skip-unused run stbi_test.v` Output: ```bash Source path: C:\Programs\v\examples\assets\logo.png Unhandled Exception 0xC0000005...
Same example works fine with Linux/clang & latest V. That means the bug could be located at Windows-specific code of C library.
I'm moving To-Do List & Features from `README.md` to here
I added text_size support for button, checkbox, passwordbox, radio, switch and textbox. I will implement for menubar and other widgets (like progress) asap.
* Status Bar is already inside to-do list inside widget section. * Tool Bar is supported with a complex api. Cells.v could be good example for that. But i want...
You can use statusbar and toolbar with latest commit. 1. Set height of statusbar/toolbar ```mut app:=m.create(title:"MUI Examples", ```...``` toolbar:25, statusbar:25)``` 2. Add widgets ```app.button(id:"open", x:0, y:0, ```...```frame:"@toolbar")``` for toolbar ```app.button(id:"open",...
Thank you for your attention. Embedding webview into same window is hard. So full-featured webview widget is like impossible. But you can look up [vwebui](https://github.com/malisipi/vwebui) if you can use webview...
I can try to create WebView window with [webview/webview](https://github.com/webview/webview). This library has good cross-platform support, uses system-webviews but it requires C++11 minimum (and C++17 for Windows). If I can make...
I got working webviews on Linux and Windows. That's not have API except C functions that provided by webview library for now, however i will write V-compatible functions (also that...
After latest commit at webview branch > Local assets (js, css, images) consumed by WebView, something like wwwroot You can load html files with `load_html_file` function. Limitations: * It uses...