class Chamomile::Widgets::StatusBar
Fixed bottom status bar.
Public Class Methods
Source
# File lib/chamomile/frame.rb, line 277 def initialize(content: "") @content = content end
Public Instance Methods
Source
# File lib/chamomile/frame.rb, line 281 def render(width: 80, height: 1) line = @content.length > width ? @content[0, width] : @content line end