1.6.0
New widget ActivityIndicator
To indicate a pending operation of indeterminate time, you can now use the widget ActivityIndicator
that displays a spinning indicator on both platforms. Have a look at the snippet.
New property displayMode to enable fullscreen
The new property displayMode
on tabris.ui
can be set to "fullscreen"
to enable fullscreen mode, i.e. to hide the system bar. The default display mode is called "normal"
.
New properties scrollX and scrollY on ScrollView
The new properties scrollX
and scrollY
can be used to get and to set the current scroll position of a ScrollView
.
backnavigation: preventDefault is now a function
In order to prevent the default effect of the back-button on Android, you can now call event.preventDefault()
as a function in your backnavigation
listener. Before you had to set a field of this name to false
. This method is still supported, but discouraged.