Sha256: 60058578af45ba346cce203bf1c929da123e3a3e0f82c4af62f19f7060a77665
Contents?: true
Size: 909 Bytes
Versions: 136
Compression:
Stored size: 909 Bytes
Contents
module RubyApp module Elements module Mobile module Default module Features require 'ruby_app/elements/mobile/button' require 'ruby_app/elements/mobile/default/features/navigated_page' require 'ruby_app/elements/mobile/navigation/back_button' require 'ruby_app/elements/mobile/page' class ButtonsPage < RubyApp::Elements::Mobile::Page template_path(:all, File.dirname(__FILE__)) def initialize super @back_button = RubyApp::Elements::Mobile::Navigation::BackButton.new @button_link = RubyApp::Elements::Mobile::Button.new @button_link.clicked do |element, event| RubyApp::Elements::Mobile::Default::Features::NavigatedPage.new.show(event) end end end end end end end end
Version data entries
136 entries across 136 versions & 1 rubygems