Sha256: 16870fa0e1b2c8ed033e22feb100285eb7bde4da47d055b4166a9bb69588c360
Contents?: true
Size: 496 Bytes
Versions: 97
Compression:
Stored size: 496 Bytes
Contents
# frozen_string_literal: true require 'glimmer-dsl-libui' include Glimmer data = [ ['cat', 'meow', [true, 'mammal']], ['dog', 'woof', [true, 'mammal']], ['chicken', 'cock-a-doodle-doo', [false, 'mammal']], ['horse', 'neigh', [true, 'mammal']], ['cow', 'moo', [true, 'mammal']] ] window('Animal sounds', 400, 200) { horizontal_box { table { text_column('Animal') text_column('Sound') checkbox_text_column('Description') cell_rows data } } }.show
Version data entries
97 entries across 97 versions & 1 rubygems