React native how to wrap content view

前端 未结 4 1374
悲&欢浪女
悲&欢浪女 2021-02-03 21:25

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

4条回答
  •  清歌不尽
    2021-02-03 21:30

    You can set the parent to wrap child component like this.

    alignSelf: 'baseline'

    
      Child Content
    
    

    Wrap child content horizontally.

提交回复
热议问题