How to create a hidden item in flex-mobile like the hidden element in HTML?

59 views Asked by At

In HTML we can create an element of type hidden, is it possible to create a similar element in flex-mobile ?

1

There are 1 answers

2
JeffryHouser On BEST ANSWER

You can hide elements from displaying on screen by using the visible property and setting it to false

You can prevent elements from being included in the layout scheme of their container by using the includeInLayout property and setting it to false

You can also hide/show elements based on states.

Since you haven't provided any context for what you want to do, it is tough to direct you to a specific approach.