使用TouchableHighlight
,我可以使用width
,height
和borderRadius
样式属性轻松制作圆形按钮。
但是,borderRadius
似乎对TouchableNativeFeedback
完全无效
我试图用TouchableNativeFeedback
和borderRadius
在视图中包装overflow: 'hidden'
元素,但无济于事。
很高兴在这里获得帮助。谢谢。
最佳答案
您只需要在borderRadius
周围的父<View>
上设置<TouchableNativeFeedback>
,并在后台属性中使用TouchableNativeFeedback.Ripple('your_color', true)
方法(请注意,无边界参数设置为true)。
如reyeser here在本机github问题中所述。