Как создать круг вокруг этого значка. Пожалуйста, дайте мне совет .. как добавить круг.
Теперь моя иконка вот так.
Как создать такой круг
<Animated.View
ref={view => view && (this.iconRef = view._component)}
onLayout={() =>
this.iconRef &&
this.iconRef.measure((x, y, width, height, pageX, pageY) =>
this.props.onMeasure({
x: pageX,
y: pageY,
width,
height,
})
)
}
style={[
styles.iconContainer,
{
opacity: this.props.opacity,
transform: [
{
scale: Animated.multiply(
this.props.opacity.interpolate({
inputRange: [0, 1],
outputRange: [0.5, 1],
}),
this.props.scale
),
},
],
},
]}
>
<Icon name="trash-o" color="white" style={styles.icon} />
</Animated.View>