Sha256: 30f750469c4edcf16f52878785e4b1b66c05eb81aa9df2a6e858340b72281690
Contents?: true
Size: 355 Bytes
Versions: 1
Compression:
Stored size: 355 Bytes
Contents
# frozen_string_literal: true Shoes.app do stack margin: 20, width: 250 do subtitle "Shoes Notebook" para "Add a note." @add = edit_line button "Save" do @notes.append do para @add.text, " ", link("delete") { |x| x.parent.remove } end @add.text = "" end end @notes = stack margin: 20, width: -250 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shoes-4.0.0.rc1 | samples/nks_notes.rb |