Build: Position Demo Screen
This screen demonstrates how to use relative and absolute positioning in React Native. It shows a box positioned relatively and another box positioned absolutely inside a container.
Target UI
------------------------- | Container | | [Relative Box] | | | | [Absolute Box]| | | -------------------------
Create a container View with a fixed height and border
Inside the container, add a blue box with relative positioning
Add a red box inside the container with absolute positioning at bottom right
The relative box should appear at the top left inside the container
The absolute box should appear overlapping the container's bottom right corner