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