如何在React Native中仅对1个角使用边界半径?
我有一个模态窗口
如您所见,下角没有圆角,当我使用backgroundColor作为按钮时会发生这种情况。我试图将溢出隐藏起来设置为模式包装器,但这对我没有帮助。现在,我想对按钮使用边框半径(仅适用于1个角)。
如何在React Native中仅对1个角使用边界半径?
我有一个模态窗口
如您所见,下角没有圆角,当我使用backgroundColor作为按钮时会发生这种情况。我试图将溢出隐藏起来设置为模式包装器,但这对我没有帮助。现在,我想对按钮使用边框半径(仅适用于1个角)。
您是否已经尝试以下方法?
- borderBottomLeftRadius
:数字
- borderBottomRightRadius
:数字
- borderTopLeftRadius
:数字
- borderTopRightRadius
:数字
Also, you can find more info in the view component docs.
在您的样式中添加以下属性:
borderBottomLeftRadius: number
borderBottomRightRadius: number
borderTopLeftRadius: number
borderTopRightRadius: number
这对我有用。
谢谢