Cannot disable the android ripple effect for FABs.
"react": "16.4.1",
"react-native": "0.56.0",
"native-base": "^2.8.0",
No ripple effect or changed color of android ripple effect.
Cannot change the FABs android ripple color.
Tried changing the style and containerStyle of FAB to change the androidRippleEffect.

I'm also seeing this issue. Is there a way to disable this behavior? I didn't see anything in the documentation.
I'm also trying to remove the ripple effect on the container of the FAB with no success. It should be applied only to the circle.
No update so far! Any workarounds @SupriyaKalghatgi or anyone
This is a workaround.
<Fab
containerStyle={{ borderRadius: 28, overflow: "hidden" }}>
// inner elements
</Fab>
@YoonjaeYoo thanks for the workaround, it does the trick for me
@YoonjaeYoo That does not give the desired output
When Fab is toggled from active to inactive, the button shrink and retains back to usual size
@SupriyaKalghatgi yes it's not perfect, but it's at least "pretty-enough" compared to a square overflowing , so it's indeed not a fix, but a "better-than-nothing workaround"
@sharathprabhal thanks a lot, can't wait for the bugfix release :)
Most helpful comment
This is a workaround.