I saw you fixed #1207 and #1553, but the ripple effect is giant on large rounded buttons.
Node v10.15.1
React Native v0.58.5
React v16.8.2
Native Base v2.11.0
Not using expo
XCode v10.1
The ripple should respect the button size.
The ripple goes completely off the button (only to the top).
For the sake of this example, this component is the topmost component in my App (but the problem also happens if it's not).
import React from 'react'
import { Container, Content, Button, Text, Separator } from 'native-base'
export default () => (
<Container>
<Content>
<Button full rounded onPress={f => f}>
<Text>Test A</Text>
</Button>
<Separator />
<Button full rounded onPress={f => f}>
<Text>Test B</Text>
</Button>
</Content>
</Container>
)

Note: if I click the first button, the problem doesn't happen, because the ripple goes off only to the top, never to the bottom.
Only Android (iOS doesn't have ripple effect).
Nope.
I tested this on Android device with https://github.com/GeekyAnts/NativeBase-KitchenSink latest
Worked fine for rounded and full rounded
@SupriyaKalghatgi this problem still exists. Could be because I'm on Android 9.
not working!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!11
not working for me as well
@SupriyaKalghatgi This is still a bug. On Android. Maybe not on all devices.
I've created this snack and it works in the Appetize web Android emulator, but it doesn't work on my OnePlus 5T with Oxygen 9.0.9:

I have the same issue, still looking for a solution.
+1
i found the solution
<View style={{overflow: 'hidden', borderRadius: 30}}>
<Button rounded/>
</View>
@lyseiha Thank you for your answer, but I think it is more a hack than a solution. The <Button/> should itself be fixed so that your hack isn't necessary.
Most helpful comment
I have the same issue, still looking for a solution.