TouchableNativeFeedback

TouchableNativeFeedback

使用TouchableHighlight,我可以使用widthheightborderRadius样式属性轻松制作圆形按钮。

但是,borderRadius似乎对TouchableNativeFeedback完全无效

我试图用TouchableNativeFeedbackborderRadius在视图中包装overflow: 'hidden'元素,但无济于事。

很高兴在这里获得帮助。谢谢。

最佳答案

您只需要在borderRadius周围的父<View>上设置<TouchableNativeFeedback>,并在后台属性中使用TouchableNativeFeedback.Ripple('your_color', true)方法(请注意,无边界参数设置为true)。

如reyeser here在本机github问题中所述。

10-08 06:45