I am trying to give an icon a circle background, but it shows up as a square. The icon has a circle background on Expo Snack but it has a square background in my project. How can I fix this?
My code:
import { View } from 'react-native';
import { Button } from 'react-native-paper';
import Ionicons from 'react-native-vector-icons/Ionicons';
<View>
<Button mode="contained">
<Ionicons
style={{
color: '#EFEFEF',
borderRadius: 32 / 2,
backgroundColor: '#111310',
width: 32,
height: 32,
}}
name="person-outline"
/>
</Button>
</View>
);
The icon background is still a square without the parent Button in my project, but I included it so the icon would be centered in its background.
Problem is when using
Button
from'react-native-paper';
Work Around:
You can use
OnPress
property of Icon.Or you can use
TouchableaOpacity