Conditional Blocks
CASE 1: Having exact 2 variation condition
IF <condition>
{
<commands when true>
}
ELSE
{
<commands when false>
}IF Profile icon is visible
{
Tap on Profile icon
}
ELSE
{
Tap on Hamburger menu
}CASE 2: Having more than 2 variation condition
Example:
Last updated
Was this helpful?