React-native view auto width by text inside

前端 未结 7 637
刺人心
刺人心 2020-12-12 15:09

As i know, react-native stylesheet doesn\'t supports min-width/max-width property.

I have a view and text inside. The view in auto width doesn\'t resize by inherit t

7条回答
  •  南方客
    南方客 (楼主)
    2020-12-12 15:26

    It works with Nicholas answer unless you want to center the view somewhere. In that case, you could add a wrapper view around the view to obtain the width of its content and set alignItems: 'center'. Like this:

        
            
                {'Your text is here'}
            
        
    

    The background color is added to show the size of the inner view

提交回复
热议问题