module UiBibz::Helpers::Ui::Core::LayoutsHelper
Public Instance Methods
ui_col(content = nil, options = nil, html_options = nil, &block)
click to toggle source
Col Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/layouts_helper.rb, line 20 def ui_col(content = nil, options = nil, html_options = nil, &block) if tapped?(block) UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options).tap(&block).render else UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options, &block).render end end
ui_container(content = nil, options = nil, html_options = nil, &block)
click to toggle source
Container Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/layouts_helper.rb, line 32 def ui_container(content = nil, options = nil, html_options = nil, &block) UiBibz::Ui::Core::Layouts::Container.new(content, options, html_options, &block).render end
ui_row(content = nil, options = nil, html_options = nil, &block)
click to toggle source
Row Component
options
(Hash) html_options
(Hash)
# File lib/ui_bibz/helpers/ui/core/layouts_helper.rb, line 8 def ui_row(content = nil, options = nil, html_options = nil, &block) if tapped?(block) UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options).tap(&block).render else UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options, &block).render end end