@muneer careful with this:
There is a bug on Android with the “visible” property of elements with “absolute” positioning, preventing them from actually getting hidden. So the only cross-platform workaround to this is to “hide” the column by setting its height and width to 0 and then showing it by setting its height and width to i.e. 250 and 150 respectively.
Having access to the Z-Index property thought a block would also work but unfortunately, we don’t 
If the app is to be used only on iOS then yes, you can use the “visible” property as you suggest.
K