Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/grkek/v6

GUI framework
https://github.com/grkek/v6

Last synced: 15 days ago
JSON representation

GUI framework

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
end

app = Application.new
app.run
```