app.display
Provides app's viewport information including resolution, scaling, and orientation. Beside of those, we have access to modify viewport's behavior such as setCursor(...)
.
#
ConstantsName | Type | Description |
---|---|---|
width | number | Gives number of viewport's width in pixels (px). |
height | number | Gives number of viewport's height in pixels (px). |
scale | number | Scaling relatives to typical desktop screen. Similar to window.devicePixelRatio . |
isLandscape | boolean | Returns true if current screen is landscape as example Desktop and Laptop screen. |
#
MethodsName | Return Type | Description |
---|---|---|
setCursor | void | Change cursor to specified kind. Only works on devices with mouse. |
#
setCursorChange cursor to specified kind. Only works on devices with mouse.
Parameters:
- name: (string type) Must be one of these:
"default"
"processing"
"clickable"
"text"
"move"
"draggable"
"dragging"
"denied"
Return: void