Sha256: 5fa675d0cef50d9d10984cb436ae0510df72817cfcd3e6bd930c11ff1cb519b3
Contents?: true
Size: 318 Bytes
Versions: 6
Compression:
Stored size: 318 Bytes
Contents
require 'purple_shoes' Shoes.app height: 200 do stack margin_left: 10 do title 'Progress Example' @p = para '0%' end pg = progress left: 10, top: 100, width: width - 20 animate do |i| j = i % 100 + 1 pg.fraction = j / 100.0 @p.text = "%2d%" % (pg.fraction * 100) end end
Version data entries
6 entries across 6 versions & 1 rubygems