-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arrow disappears after applying border style #91
Comments
Hey @YeshanJay , this is a known limitation of the spinner android widget (not relative to {N}). As a workaround you can wrap the drop down in a StackLayout with |
Hi @PeterStaev , |
How do you get rid of the underline within the dropdown (see image)? Tried the CSS to set bottom border to none but doesn't do anything. Would be nice to get rid of it:
.drop-down{ |
@DBhail the border is a default android style of the spinner. You can remove it AND the indicator on the right by using the hack to apply a border to the element: .drop-down {
border-color: white;
border-width: 1;
border-style: solid;
} |
Hi,
The arrow on the widget disappears after applying border styles on it. See the images below.
Is there any way to keep both border and arrow?
CSS style:
Without border:
With border:
The text was updated successfully, but these errors were encountered: