When you press the Radio button behind appears an highlight animation which I want to remove I looked the doc but I didn't see anything that could help it, my version: "^4.12.4"
here is the link of snack if anyone needs it ==> https://snack.expo.dev/WOrBH5gVr
import { RadioButton } from 'react-native-paper';
const MyComponent = () => {
const [value, setValue] = React.useState('first');
return (
<RadioButton.Group onValueChange={value => setValue(value)} value={value}>
<RadioButton.Item label="First item" value="first"
/>
<RadioButton.Item label="Second item" value="second" />
</RadioButton.Group>
);
};
export default MyComponent;