Sha256: df5ccc88f9e5ae00eae664b4f76c6224f1f4eb50308f2b3e2d52c0bec0c6f734
Contents?: true
Size: 428 Bytes
Versions: 5
Compression:
Stored size: 428 Bytes
Contents
# frozen_string_literal: true require 'glimmer-dsl-libui' include Glimmer data = [ %w[cat meow], %w[dog woof], %w[chicken cock-a-doodle-doo], %w[hourse neigh], %w[cow moo] ] window('Editable animal sounds', 300, 200) { horizontal_box { table { text_column('Animal') text_column('Description') cell_rows data editable true } } on_closing do puts 'Bye Bye' end }.show
Version data entries
5 entries across 5 versions & 1 rubygems