Sha256: 34d744fef7dfb61994818e6f1ee2a06038947abe5574b183ecece3d0e6e7702b
Contents?: true
Size: 612 Bytes
Versions: 5
Compression:
Stored size: 612 Bytes
Contents
require_relative 'helpers/example_window' class ExampleState < Fidgit::GuiState def initialize super pack :horizontal do pack :vertical do label 'editable' text_area(width: 200) end pack :vertical do label 'mirrors to right' text_area(width: 200, text: "Hello, my name in brian the snail!") do |sender, text| @mirror.text = text end end pack :vertical do label 'not editable' @mirror = text_area(width: 200, enabled: false) end end end end ExampleWindow.new.show
Version data entries
5 entries across 5 versions & 1 rubygems