我在我的应用程序中使用React-Native。我使用.*(?=@)
来显示主视图之外的视图。它在iOS中运行良好,但在Android中运行良好。
这是我的代码:
overflow
风格:
<View style={Style.parentStyle}>
<View
style={[
{
height: barHeight,
backgroundColor: color,
overflow: "visible"
},
Style.mainStyle
]}
>
<View
style={[
{
borderRadius: shadowHeight,
top: -borderRadiusBar,
borderWidth: 1.0,
borderColor: borderColor,
backgroundColor: color,
overflow: "visible"
},
Style.roundStyle
]}
>
<Text style={Style.otherstyle}>{player value}</Text>
</View>
</View>
<Text style={Style.textStyle}>{name}</Text>
</View>;
答案 0 :(得分:1)
Android尚不支持overflow
属性。但您可以支持功能请求here。
答案 1 :(得分:1)
由于某些原生限制,它还没有工作,因此所有溢出项都将被隐藏。