Hello kindly take a look at the following issue, action sheet issuing the wrong constant variable, which is causing it to have completely rounded top radius. Thank you!!!!!!!
ALSO THE USAGES OF BORDER_RADIUS AND CONERS MIGHT BE INTERCHANGED
FROM Line 300
sheet: {
borderTopLeftRadius: CORNERS,
borderTopRightRadius: CORNERS,
paddingBottom: 34, // Safe area bottom padding
maxHeight: '80%',
elevation: 10,
shadowColor: '#000',
shadowOffset: {
width: 0,
height: -2,
},
shadowOpacity: 0.25,
shadowRadius: 10,
},
SHOULD BE
sheet: {
borderTopLeftRadius: BORDER_RADIUS,
borderTopRightRadius: BORDER_RADIUS,
paddingBottom: 34, // Safe area bottom padding
maxHeight: "80%",
elevation: 10,
shadowColor: "#000",
shadowOffset: {
width: 0,
height: -2,
},
shadowOpacity: 0.25,
shadowRadius: 10,
},
Hello kindly take a look at the following issue, action sheet issuing the wrong constant variable, which is causing it to have completely rounded top radius. Thank you!!!!!!!
ALSO THE USAGES OF BORDER_RADIUS AND CONERS MIGHT BE INTERCHANGED
FROM Line 300
sheet: {
borderTopLeftRadius: CORNERS,
borderTopRightRadius: CORNERS,
paddingBottom: 34, // Safe area bottom padding
maxHeight: '80%',
elevation: 10,
shadowColor: '#000',
shadowOffset: {
width: 0,
height: -2,
},
shadowOpacity: 0.25,
shadowRadius: 10,
},
SHOULD BE
sheet: {
borderTopLeftRadius: BORDER_RADIUS,
borderTopRightRadius: BORDER_RADIUS,
paddingBottom: 34, // Safe area bottom padding
maxHeight: "80%",
elevation: 10,
shadowColor: "#000",
shadowOffset: {
width: 0,
height: -2,
},
shadowOpacity: 0.25,
shadowRadius: 10,
},