79680581

Date: 2025-06-26 13:32:05
Score: 1.5
Natty:
Report link

You can create a custom tabBarButton component, as @furkan mentioned, and disable the Android ripple effect.

const tabBarButton = ({ children, onPress }: BottomTabBarButtonProps) => (
  <Pressable
    onPress={onPress}
    style={{ justifyContent: 'center', alignItems: 'center' }}
    android_ripple={{
      foreground: true,
    }}
  >
    {children}
  </Pressable>
);
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @furkan
  • Low reputation (1):
Posted by: Ashley Ngoetjana