Sha256: 3962f25b73553bc6bd3a2abfecb39886beccc552b51bb225f0506b8b45306913
Contents?: true
Size: 510 Bytes
Versions: 63
Compression:
Stored size: 510 Bytes
Contents
# frozen_string_literal: true require 'glimmer-dsl-libui' include Glimmer data = [ %w[cat calm meow], %w[dog loyal woof], %w[chicken bird cock-a-doodle-doo], %w[horse fast neigh], %w[cow slow moo] ] window('Editable column animal sounds', 400, 200) { horizontal_box { table { text_column('Animal') text_column('Description') text_column('Sound (Editable)') { editable true } cell_rows data } } on_closing do puts 'Bye Bye' end }.show
Version data entries
63 entries across 63 versions & 1 rubygems