package expo.modules.screenorientation /* * Enum representing a screen orientation. */ enum class Orientation(val value: Int) { UNKNOWN(0), PORTRAIT_UP(1), PORTRAIT_DOWN(2), LANDSCAPE_LEFT(3), LANDSCAPE_RIGHT(4), }