Getting vertical lines in textbox in iOS devices for native mobile application.

0
Hi community. I’m trying to capture name of user and for that I have given a text box with some styling. The expected look of text box is as per below image.   and to achieve this I have given txtInput class with defination as below:- export const txtInput = {   label: {     numberOfLines: 2,     color: brand.primary,     fontSize: 16,     fontWeight: font.weightBold,     fontFamily: openSansFontFamily.bold,   },   container: {     backgroundColor: brand.dark,     borderRadius: 8,     padding: 10,   },   containerDisabled: {     backgroundColor: brand.dark,     borderRadius: 8,     padding: 10,     opacity: 0.7,   },   input: {     borderBottomWidth: 1,     borderTopWidth: 0,     borderLeftWidth: 0,     borderRightWidth: 0,     minwidth:100,     borderColor: "#3B4354",     shadowColor: "#FFFFFF",     shadowOffset: { width: 0, height: 0 },     shadowOpacity: 0,     shadowRadius: 0,     elevation: 4,     background: "#FFFFFF",     fontSize: 16,     fontWeight: "400",     fontFamily: openSansFontFamily.regular,     placeholderTextColor: brand.placeholder,   },   inputDisabled: {     borderBottomWidth: 1,     borderTopWidth: 0,     borderLeftWidth: 0,     borderRightWidth: 0,     borderColor: "#3B4354",     shadowColor: "#FFFFFF",     shadowOffset: { width: 0, height: 0 },     shadowOpacity: 0,     shadowRadius: 0,     elevation: 4,     background: "#FFFFFF",     fontSize: 16,     fontWeight: "400",     opacity: 0.7,   },   placeholder: {     color: brand.placeholder,     fontSize: 16,   },   value: {     borderBottomWidth: 1,     borderTopWidth: 0,     borderLeftWidth: 0,     borderRightWidth: 0,     borderColor: "#3B4354",     shadowColor: "#FFFFFF",     shadowOffset: { width: 0, height: 0 },     shadowOpacity: 0,     shadowRadius: 0,     elevation: 4,     background: "#FFFFFF",     fontSize: 16,     fontWeight: "400",     placeholderTextColor: "#565656",   }, }; But due to some reason I’m seeing a vertical line on the right side of the text box and I’m unable to remove it. This issue is only for iOS devices as in Andriod devices it’s working perfectly. Please refer the below issue to understand the issue.   Please let me know if anyone can help to resolve this issue. Really appreciate your help. thank you.
asked
0 answers