How to achieve this layout in react native

I have 3 Views, I want two of them, let’s call them View1 and View2, to be vertically aligned to center, and a third one, View3, to be horizontally aligned under View2.

I already tried with flex containers but I was only able to vertically align View1 with View2 and View3 as a whole.

I think using margin is not an option since I do not know the dimensions a priori.

enter image description here

Leave a Comment