Sha256: 94d447b5c8c3109173574ce7cd994f804d8cd20259e162b8669344d5c9e397ae

Contents?: true

Size: 416 Bytes

Versions: 6

Compression:

Stored size: 416 Bytes

Contents

class HomeScreen < ProMotion::Screen

  title "Home"

  def on_load
    set_nav_bar_right_button "Save", action: :save_something, type: UIBarButtonItemStyleDone
    set_nav_bar_left_button UIImage.imageNamed("list.png"), action: :return_to_some_other_screen, type: UIBarButtonItemStylePlain
  end

  def on_return(args={})
  end

  def subview_styles
    {
      backgroundColor: UIColor.greenColor
    }
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ProMotion-1.2.1 spec/helpers/home_screen.rb
ProMotion-1.2.0 spec/helpers/home_screen.rb
ProMotion-1.1.2 spec/helpers/home_screen.rb
ProMotion-1.1.1 spec/helpers/home_screen.rb
ProMotion-1.1.0 spec/helpers/home_screen.rb
ProMotion-1.1.0.rc1 spec/helpers/home_screen.rb