Sha256: 2adea8f159e2704481f6f71b84d13b42b97c8e21a76a62793b4ead08a05b8f1f

Contents?: true

Size: 535 Bytes

Versions: 11

Compression:

Stored size: 535 Bytes

Contents

class BasicScreen < PM::Screen
  title "Basic"

  def on_init
    # Fires right after the screen is initialized
  end

  def on_load
    # Fires just before a screen is opened for the first time.
  end
  
  def will_appear
    # Fires every time the screen will appear
  end

  def on_appear
    # Fires just after the screen appears somewhere (after animations are complete)
  end

  def will_disappear
    # Fires just before the screen will disappear
  end

  def on_disappear
    # Fires after the screen is fully hidden
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ProMotion-0.7.4 app/screens/basic_screen.rb
ProMotion-0.7.3 app/screens/basic_screen.rb
ProMotion-0.7.2 app/screens/basic_screen.rb
ProMotion-0.7.1 app/screens/basic_screen.rb
ProMotion-0.7.0 app/screens/basic_screen.rb
ProMotion-0.6.5 app/screens/basic_screen.rb
ProMotion-0.6.4 app/screens/basic_screen.rb
ProMotion-0.6.3 app/screens/basic_screen.rb
ProMotion-0.6.2 app/screens/basic_screen.rb
ProMotion-0.6.1 app/screens/basic_screen.rb
ProMotion-0.6.0 app/screens/basic_screen.rb