I want to make my button fully have black border and shadow heres the design how to do that? the problem is the shadow is not fully black, it still have blur effect.
and this is my implementation in react native
socialButton: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'white',
paddingVertical: 12,
paddingHorizontal: 16,
elevation: 2,
shadowColor: 'rgba(0, 0, 0, 1)',
shadowOffset: {width: 0, height: 2},
shadowOpacity: 1,
shadowRadius: 2,
borderRadius: 25,
borderWidth: 1,
borderColor: '#000',
},
2
Answers
nvm, i solved it just placing
<View>
tag behind the button.