Sha256: 9e8c3789392af042e5c757ebac176aa63b3d358d3a77eb6ac247f0dcc053d150
Contents?: true
Size: 450 Bytes
Versions: 9
Compression:
Stored size: 450 Bytes
Contents
class DependencyController < UIViewController attr :button stylesheet :dependency layout do @button = subview(UIView, :my_button) end end Teacup::Stylesheet.new :dependency do style :button, size: [90, 90], backgroundColor: UIColor.redColor style :my_button, extends: :button, top: 0, center_x: 80, # <-- This results in a frame of [[80, 0], [90, 90]] instead of [[35, 0], [90, 90]] title: 'My Button' end
Version data entries
9 entries across 9 versions & 1 rubygems