Skip to content
Advertisement

Align vertically Icon and Text in ListView – React Native

I want to make a ListView and each row should contain an Icon and a Text. But I need them to be vertically aligned.

The code:

JavaScript

The above code generates:

Components are not aligned

in which the components are not aligned.

How can I solve this?

Advertisement

Answer

Try something like this:

JavaScript

Tweak the flex value of the <View> wrapping the text element for a result more to your liking.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement