Widget Overview

To build a comprehensive user experience, different UI components can be combined. The following list shows all available widgets for Android and iOS.

Action

An executable item that is integrated in the application’s navigation menu. Add a select listener to react to action taps.

Action on Android
Android
Action on iOS
iOS

ActivityIndicator

A widget representing a spinning indicator for indeterminate loading / processing time.

ActivityIndicator on Android
Android
ActivityIndicator on iOS
iOS

Button

A push button. Can contain a text or an image.

Button on Android
Android
Button on iOS
iOS

Canvas

Canvas is a widget that can be used to draw graphics using a canvas context.

Canvas on Android
Android
Canvas on iOS
iOS

CheckBox

A check box widget.

CheckBox on Android
Android
CheckBox on iOS
iOS

CollectionView

A scrollable list that displays data items in cells, one per row. Cells are created on demand by the createCell callback and reused on scrolling.

CollectionView on Android
Android
CollectionView on iOS
iOS

Composite

An empty widget that can contain other widgets.

Composite on Android
Android
Composite on iOS
iOS

Drawer

A drawer that can be swiped in from the left edge of the screen. There’s only a single instance that can be accessed via tabris.drawer. The drawer is locked by default. To use it in an application, set the property enabled to true. The drawer can contain any kind of widgets.

Drawer on Android
Android
Drawer on iOS
iOS

ImageView

A widget to display an image.

ImageView on Android
Android
ImageView on iOS
iOS

A widget that displays a stack of pages with a toolbar that allows to navigate back. The toolbar also displays the current page’s title and the highest priority actions that are added to the NavigationView. Only children of type Page, Action and SearchAction are supported. Since the NavigationView does not compute its own size, the width and height must be defined by the respective layout properties (e.g. either width or left and right must be specified).

NavigationView on Android
Android
NavigationView on iOS
iOS

Page

A container representing a single page of a NavigationView widget.

Page on Android
Android
Page on iOS
iOS

Picker

A widget with a drop-down list of items to choose from.

Picker on Android
Android
Picker on iOS
iOS

ProgressBar

A widget representing a numeric value as a horizontal bar with a growing indicator.

ProgressBar on Android
Android
ProgressBar on iOS
iOS

RadioButton

A radio button. Selecting a radio button de-selects all its siblings (i.e. all radio buttons within the same parent).

RadioButton on Android
Android
RadioButton on iOS
iOS

RefreshComposite

A composite allowing to use a pull-to-refresh gesture to trigger and visualize a long running operation.

RefreshComposite on Android
Android
RefreshComposite on iOS
iOS

ScrollView

A composite that allows its content to overflow either vertically (default) or horizontally. Since the ScrollView does not compute its own size, the width and height must be defined by the respective layout properties (e.g. either width or left and right must be specified).

ScrollView on Android
Android
ScrollView on iOS
iOS

SearchAction

An action that displays a search text field with dynamic proposals when selected. Add a listener on select to implement the action. On input, you may set a list of proposals.

SearchAction on Android
Android
SearchAction on iOS
iOS

Slider

A widget representing a numeric value as an movable indicator on a horizontal line.

Slider on Android
Android
Slider on iOS
iOS

Switch

A switch widget that can be toggled.

Switch on Android
Android
Switch on iOS
iOS

Tab

A container representing a single tab of a TabFolder widget.

Tab on Android
Android
Tab on iOS
iOS

TabFolder

A widget that can switch between tabs. Only children of type Tab are supported. Since the TabFolder does not compute its own size, the width and height must be defined by the respective layout properties (e.g. either width or left and right must be specified).

TabFolder on Android
Android
TabFolder on iOS
iOS

TextInput

A widget that allows to enter text.

TextInput on Android
Android
TextInput on iOS
iOS

TextView

A widget to display a text. For images, use ImageView.

TextView on Android
Android
TextView on iOS
iOS

ToggleButton

A push button that “snaps in”, i.e. it is selected when pressed and deselected when pressed again.

ToggleButton on Android
Android
ToggleButton on iOS
iOS

Video

A widget that plays a video from an URL.

Video on Android
Android
Video on iOS
iOS

WebView

A widget that can display a web page. Since this widget requires a lot of resources it’s recommended to have no more than one instance at a time.

WebView on Android
Android
WebView on iOS
iOS