Screen

Screen is not creatable, there's only one instance of it. It can only be accessed through its globally exposed variable.

Screen represents the area on which the app is rendered.

Functions

Triggered when the Screen is resized.

Screen.DidResize = function(width, height)
  print("SCREEN SIZE:", width, height)
end

Properties

Screen's height, in points.

Screen's width, in points.