I want to create a hidden view
similar to Android's functionality. The view should take up space on the screen but remain invisible to the user.
<View
android:id="@+id/hiddenView"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:visibility="invisible" />
How can this be accomplished in ReactJS
?