Search.../

alignment

Sets or gets a quick action bar's alignment.

Description

Setting the alignment property to "right" shows the quick action bar on the right side of the user's device. Setting it to "left" shows it on the left side.

Getting the alignment property returns whether the quick action bar is shown on the left or right side of the user's device.

Note: Only vertical quick action bar designs support the alignment property.

Type:

booleanRead & Write

Was this helpful?

Set the quick action bar alignment

Copy Code
1$w("#myQuickActionBar").alignment = "right";
Get the quick action bar alignment

Copy Code
1let alignment = $w("#myQuickActionBar").alignment; // "right"