Items visible by tapping

Is there any way to make an item visible for example by tapping / clicking the container 2 o 3 times?

Hi Mateo,

You can bind a number type page variable to component tap flow function of the component and increase the count while there is a new tap to the component by set page variable flow function via a function like

pageVars.numberVariable == 1+pageVars.numberVariable

This will set the value of the numberVariable to previous value+1 on each tap of the component. You now can bind the visibility of the target component to a particular numberVariable value as you like.

2 Likes