Add `tabBarAndroidRipple` for `bottom-tabs` as already done for `material-top-tabs`
David Prevost
In 5ae1047114724705f8026db6be0f0452e92e89e0, the ripple effect changed and got enabled by default in our case. I thought
tabBarAndroidRipple
would help, but it is not implemented for bottom-tabs (see a452ecbfa00d963ff46f231919e66b3cd87f5939)Add
tabBarAndroidRipple
for bottom-tabs
as already done for material-top-tabs
For now, I disabled it using the below, which might be the intended configuration too
```ts
const TabBarButton: React.FC<any> = (props) => <Pressable {...props} android_ripple={{ color: 'transparent' }} />;
<BottomTab.Navigator backBehavior={'history'} screenOptions={{ tabBarButton: TabBarButton }}>
```