ToolbarAndroid#rtl

rtl bool Used to set the toolbar direction to RTL. In addition to this property you need to add android:supportsRtl="true" to your application AndroidManifest.xml and then call setLayoutDirection(LayoutDirection.RTL) in your MainActivity onCreate method.

ToolbarAndroid#overflowIcon

overflowIcon optionalImageSource Sets the overflow icon.

ToolbarAndroid#onIconClicked

onIconClicked function Callback called when the icon is selected.

ToolbarAndroid#onActionSelected

onActionSelected function Callback that is called when an action is selected. The only argument that is passed to the callback is the position of the action in the actions array.

ToolbarAndroid#navIcon

navIcon optionalImageSource Sets the navigation icon.

ToolbarAndroid#logo

logo optionalImageSource Sets the toolbar logo.

ToolbarAndroid#contentInsetStart

contentInsetStart number Sets the content inset for the toolbar starting edge. The content inset affects the valid area for Toolbar content other than the navigation button and menu. Insets define the minimum margin for these components and can be used to effectively align Toolbar content along well-known gridlines.

ToolbarAndroid#contentInsetEnd

contentInsetEnd number Sets the content inset for the toolbar ending edge. The content inset affects the valid area for Toolbar content other than the navigation button and menu. Insets define the minimum margin for these components and can be used to effectively align Toolbar content along well-known gridlines.

ToolbarAndroid#actions

actions [{title: string, icon: optionalImageSource, show: enum('always', 'ifRoom', 'never'), showWithText: bool}] Sets possible actions on the toolbar as part of the action menu. These are displayed as icons or text on the right side of the widget. If they don't fit they are placed in an 'overflow' menu. This property takes an array of objects, where each object has the following keys: title: required, the title of this action icon: the icon for this action, e.g. require('./some_icon.png')

ToastAndroid.show()

static show(message, duration)