Sha256: cb40f9019f0f8579f0a562906bd2ccefa0cb249d5cfba4b3a66166591ddcbbff
Contents?: true
Size: 432 Bytes
Versions: 70
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', 400, 200) { horizontal_box { table { text_column('Animal') text_column('Description') checkbox_column('Mammal') cell_rows data } } }.show
Version data entries
70 entries across 70 versions & 1 rubygems