react-native-apple-authentication
react-native-apple-authentication copied to clipboard
borderRadius style is not working on iOS.
<AppleButton
buttonStyle={AppleButton.Style.BLACK}
buttonType={AppleButton.Type.CONTINUE}
style={{
width: width * 0.8,
height: 45,
borderRadius: 22,
marginTop: 10,
borderWidth: StyleSheet.hairlineWidth
}}
textStyle={{
color: colors.white,
fontSize: 19,
}}
leftView={
<Image source={require('../../../assets/apple_icon.png')} style={{ width: 20, height: 20, marginRight: 10, marginTop: 3 }} />
}
onPress={() => {
console.log("Button Tapped")
}}
/>