All Projects → vlang → Ui

vlang / Ui

Licence: gpl-3.0
Cross-platform UI library written in V

Labels

Projects that are alternatives of or similar to Ui

Silx
silx toolkit
Stars: ✭ 69 (-94.36%)
Mutual labels:  gui
Moonnuklear
Lua bindings for Nuklear
Stars: ✭ 74 (-93.95%)
Mutual labels:  gui
Nplusminer
NPlusMiner + GUI | NVIDIA/AMD/CPU miner | AI | Autoupdate | MultiRig remote management
Stars: ✭ 75 (-93.87%)
Mutual labels:  gui
Wxformbuilder
RAD tool for wxWidgets GUI design
Stars: ✭ 1,167 (-4.58%)
Mutual labels:  gui
Pypokergui
GUI application for PyPokerEngine
Stars: ✭ 72 (-94.11%)
Mutual labels:  gui
Morda
🐶 GUI library in C++
Stars: ✭ 75 (-93.87%)
Mutual labels:  gui
Hitomi Downloader
🍰 Desktop application to download images/videos/music/text from Hitomi.la and other sites, and more.
Stars: ✭ 1,154 (-5.64%)
Mutual labels:  gui
Abr Broadcaster
A real time encoder for Adaptive Bitrate Broadcast
Stars: ✭ 80 (-93.46%)
Mutual labels:  gui
Swiftgui
SwiftGUI is an API inspired by SwiftUI DSL, using Dear ImGui as renderer and running on macOS 10.13+ and iOS 11+
Stars: ✭ 74 (-93.95%)
Mutual labels:  gui
Corewar
School 42 project // Implementation of programming game “Core War” [Champions + Assembler + Disassembler + Virtual Machine + Visualizer]
Stars: ✭ 76 (-93.79%)
Mutual labels:  gui
Ara
ARA Records Ansible and makes it easier to understand and troubleshoot.
Stars: ✭ 1,176 (-3.84%)
Mutual labels:  gui
Skin.refocus
reFocus, a skin for Kodi
Stars: ✭ 72 (-94.11%)
Mutual labels:  gui
Examples
Learn to create a desktop app with Python and Qt
Stars: ✭ 1,196 (-2.21%)
Mutual labels:  gui
Asap app imgui
Starter project for portable app with optional GUI (GLFW/ImGui) and a rich builtin debug UI. Includes docked windows, log viewer, settings editor, configuration load/save, etc...
Stars: ✭ 70 (-94.28%)
Mutual labels:  gui
Chrysalisp
Parallel OS, with GUI, Terminal, OO Assembler, Class libraries, C-Script compiler, Lisp interpreter and more...
Stars: ✭ 1,205 (-1.47%)
Mutual labels:  gui
Popup Dict
Linux 下的划词翻译小工具
Stars: ✭ 69 (-94.36%)
Mutual labels:  gui
Pydiff
A simple GUI for python's difflib to compare files and directories
Stars: ✭ 74 (-93.95%)
Mutual labels:  gui
Magicgui
build GUIs from python functions, using magic.
Stars: ✭ 80 (-93.46%)
Mutual labels:  gui
Ptdesigner
Library and GUI tool for designing and generation of procedural textures, made as a part of my Bachelor thesis.
Stars: ✭ 77 (-93.7%)
Mutual labels:  gui
Pyrustic
Lightweight framework and software suite to help develop, package, and publish Python desktop applications
Stars: ✭ 75 (-93.87%)
Mutual labels:  gui

V UI 0.0.4

Build Status

Twitter handle

ui.window({
    width: 600
    height: 400
    title: 'V UI Demo'
}, [
    ui.row({
        margin: {
            top: 10
            left: 10
            right: 10
            bottom: 10
        }
    }, [
        ui.column({
            width: 200
            spacing: 13
        }, [
            ui.textbox({
                max_len: 20
                width: 200
                placeholder: 'First name'
                text: &app.first_name
            }),
            ui.textbox({
                max_len: 50
                width: 200
                placeholder: 'Last name'
                text: &app.last_name
            }),
        ]),
    ]),
])

Installation

v up
v install ui

Running the examples

cd examples
v run users.v
v run temperature.v
v run ...

This is pre-alpha software.

V UI is a cross-platform UI toolkit written in the V programming language for Windows, macOS, Linux, and soon Android, iOS and the web (JS/WASM). V UI uses native widgets on Windows and macOS, on all other platforms the widgets are drawn by V UI. Right now only the non-native widgets are available.

This is a very early version of the library, lots of features are missing, lots of things will change.

The API is declarative, and there will be hot reloading, similar to SwiftUI and Flutter.

On Linux, V UI will be a full-featured lightweight alternative to GTK and Qt.

0.1 roadmap

Discord: #v-ui channel

Documentation will be available soon. In the meantime use the examples as the documentation. The framework is very simple and straightforward.

Dependencies

Binaries built with V UI will have no dependencies.

To develop V UI apps, you need to install V. This takes a couple of seconds.

On some Linux distros you also need a few development dependencies:

  • Debian/Ubuntu: sudo apt install libxi-dev libxcursor-dev mesa-common-dev
  • Fedora: sudo dnf install libXi-devel libXcursor-devel mesa-libGL-devel

On ChromeOS Linux/Crostini, install the Debian dependencies listed above followed by this:

License

V UI is licensed under GPL3. A commercial license will be available. Open-source projects will have access to the commercial license for free. Every single feature will be open-sourced right away and available under both licenses. At some point in the future the library will be relicensed under MIT.

Contributing

After the first contribution you will be asked to agree to a CLA, declaring that you have the right to, and actually do, grant us the rights to use your contribution.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].