Sha256: 2fc83c789c8e23bc3ea285639dc50ee16d62536e7550daf616d7bedcceee5dc1
Contents?: true
Size: 1.05 KB
Versions: 101
Compression:
Stored size: 1.05 KB
Contents
module RubyApp module Elements module Mobile module Default require 'ruby_app/elements/mobile/default/features/default_page' require 'ruby_app/elements/mobile/navigation/navigation_button' require 'ruby_app/elements/mobile/navigation/page_button' require 'ruby_app/elements/mobile/page' require 'ruby_app/elements/mobile/pages/information_page' class DefaultPage < RubyApp::Elements::Mobile::Page template_path(:all, File.dirname(__FILE__)) def initialize super @features_link = RubyApp::Elements::Mobile::Navigation::PageButton.new @features_link.page = RubyApp::Elements::Mobile::Default::Features::DefaultPage @information_link = RubyApp::Elements::Mobile::Navigation::NavigationButton.new @information_link.clicked do |element, event| RubyApp::Elements::Mobile::Pages::InformationPage.new(event.now).show(event, element.options) end end end end end end end
Version data entries
101 entries across 101 versions & 1 rubygems