2021-02-12 01:25 AM
2021-02-12 02:45 AM
Hi,
Could you provide more details on what you are trying to achieve ? What have you tried ?
For your first question i believe you might be looking for something similar to the radio button widget ? You can have a look at the UI template "Radio Button Example" available in TouchGFX Designer to see if this is what you are looking for, and to see how to work with it.
/Romain
2021-02-12 02:54 AM
Hi,
I am trying to implement Screen Locking feature and I have implemented the same using toggle button and screen Lock widget.
I am now trying to blink or highlight that screen lock widget whenever the user touches the screen So that user will come to know he has to unlock first
2021-02-12 04:11 AM
A way to do this could be to add a container on top of the screen when you "lock it". Since it response to click events you can make the animation you wish when the user tries to touch the locked screen.
/Romain
2021-02-15 05:24 PM
But in order to get click events I must add button to the container right?
I don't want any buttons in the container and I want the screen handle the click or touch event
2021-02-15 08:49 PM
And Please Can I get the sample code of how can I get click event on the screen without adding a buuton
2021-02-22 12:15 AM
Hello VKuma.10,
To prevent the screen from being clickable, you can, as Romain said, use a Container on top of everything and add a ClickListener to it.
You will find this option in the Mixins section of your widget Properties on the right sidebar in the Designer.
/Alexandre