这个图片在里面的内容不满的时候没问题,但是满了就出现如下图
右边的icon 被挤出了父视图。
这里给text 赋值width:"100%" 发现不生效并且直接把右边按钮直接超过了父视图。
这个时候给text设置一个flex:1即可。代码如下:
view: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
touchText: {
flex: 1,
},
这个图片在里面的内容不满的时候没问题,但是满了就出现如下图
右边的icon 被挤出了父视图。
这里给text 赋值width:"100%" 发现不生效并且直接把右边按钮直接超过了父视图。
这个时候给text设置一个flex:1即可。代码如下:
view: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
touchText: {
flex: 1,
},