Sha256: cf18a33f82aa36353692612cbe090044bda2eb51de5a8ad6dd944509d620ce0f
Contents?: true
Size: 324 Bytes
Versions: 27
Compression:
Stored size: 324 Bytes
Contents
require '../lib/green_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
27 entries across 27 versions & 1 rubygems