"native-base": "^2.3.2",
"react-native": "0.48.3",
Code: https://pastebin.com/WFM2HtMf

In Card element? Try like this: <Card style={{flexWrap: null}} />
I had the same problem. @KDamir's solution fixes it.
<Card style={{flexWrap: "nowrap"}} /> also solves the issue
Fixed with NativeBase 2.3.5
Most helpful comment
In Card element? Try like this:
<Card style={{flexWrap: null}} />