I\'m pretty new with RN, is there anyway to wrap the content of the view, similar to Android. In Android I can adjust, Height: \'wrap-content\', but somehow in RN, I can\'t do a
In the case of flexDirection: "row", you should use flexWrap: "wrap" to wrap the items inside.
flexDirection: "row"
flexWrap: "wrap"