Class: BasicScreen

Inherits:
PM::Screen
  • Object
show all
Defined in:
app/screens/basic_screen.rb

Instance Method Summary collapse

Instance Method Details

#on_appearObject



16
17
18
# File 'app/screens/basic_screen.rb', line 16

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

#on_disappearObject



24
25
26
# File 'app/screens/basic_screen.rb', line 24

def on_disappear
  # Fires after the screen is fully hidden
end

#on_initObject



4
5
6
# File 'app/screens/basic_screen.rb', line 4

def on_init
  # Fires right after the screen is initialized
end

#on_loadObject



8
9
10
# File 'app/screens/basic_screen.rb', line 8

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

#will_appearObject



12
13
14
# File 'app/screens/basic_screen.rb', line 12

def will_appear
  # Fires every time the screen will appear
end

#will_disappearObject



20
21
22
# File 'app/screens/basic_screen.rb', line 20

def will_disappear
  # Fires just before the screen will disappear
end