I want to have a view with a part (with three lines of text wrapped in a View) aligned to the left and a part (with an image in the view) as follows:
+-----------+ | | | | | A | | B | | | | | +-----------+
I have a style for the main view:
Tab: { flexDirection: 'row', flex: 1, justifyContent: 'space-between', backgroundColor: '#F5FCFF', padding:5, borderWidth:1, }
but what he does is
+-----------+ | || | | | A || B | | | || | | +-----------+
I tried to align myself and justifyContent for a flexible end for B, played a little, but I canβt even get the whole thing to bring it into line.
(Maybe the problem with these tabs is because they are in a list view? Will it affect them?)
Question: how do I get components to listen for alignment and alignment of properties?
Zygro source share