Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grkek/v6
GUI framework
https://github.com/grkek/v6
Last synced: 15 days ago
JSON representation
GUI framework
- Host: GitHub
- URL: https://github.com/grkek/v6
- Owner: grkek
- License: mit
- Created: 2020-10-28T14:10:36.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-29T06:05:06.000Z (about 4 years ago)
- Last Synced: 2024-10-25T01:28:19.879Z (2 months ago)
- Language: Crystal
- Size: 23.4 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# V6
GUI development library for Crystal lang.
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
v6:
github: grkek/v6
```2. Run `shards install`
## Usage
```crystal
require "v6"class Application < V6::Application
def render : Component
Box.new
end
endapp = Application.new
app.run
```