v6

Version, currently master branch1 version
  • master branchlatestOct 29, 2020

github.com/grkek/v6

GUI framework

4 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  v6:
    github: grkek/v6
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.35.1
License
MIT
Author
Giorgi Kavrelishvili

Dependencies

Runtime Dependencies

  • tasker*github: spider-gazelle/tasker
  • gobject*github: jhass/crystal-gobject

Development Dependencies

  • ameba*github: crystal-ameba/amebadev

README

V6

GUI development library for Crystal lang.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      v6:
        github: grkek/v6
  2. Run shards install

Usage

require "v6"

class Application < V6::Application
  def render : Component
    Box.new
  end
end

app = Application.new
app.run