I’m getting this problem.i need an android font family
And also I’m getting RGB in red underline.
Also it’s showing for the below field too
How to handle this.
The error comes once I have not entered anything
But before I’m into the page the error comes.
How many entry components do you have on this screen? What type of components are they?
Have fixed 90 percent problem in it by action.
1.without phone number
2.without address
3.11 digit phone number
4.9 digit phone number
5.now the ugly errors are not coming because of no value in min and Max value
6.If phone number and address both empty it should throw error as enter phone number and address instead throws enter phone number - this can’t be implemented in action.any idea?
I believe your phone entry is the 4th on that screen, I tried to imitate it so it’s image + title + text then entry, let me know if the code below works.
<pre><span><style>
div[id*='screenScrollView'] > div > :nth-of-type(4) >div >div +caption {
display: none;
}
div[id*='screenScrollView'] > div > :nth-of-type(4) >div::after{
content: "Invalid phone number";
color: rgb(255,118,116);
margin-top: 8px;
text-align: start;
font-weight: 400;
font-size: 0.75rem;
line-height: 1.0625rem;
font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}
Since this is position-specific, please change the “4” number inside the nth-of-type brackets if you ever make changes that affect that component’s position.