I am currently developing an Android application using Angular NativeScript, and I'm aiming to implement a search bar with rounded corners. My HTML code looks like this:
<SearchBar class="search"></SearchBar>
In my CSS file, I have added the following styling for the search bar:
.search{
border-radius: 30px;
}
Despite adding the border radius, the search bar appears with sharp corners instead of rounded ones as depicted in the image. How can I rectify this issue?