-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(css): text-stroke support #10399
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
Conversation
@NathanWalker I think the StyleableTextView should be native. By creating you actually made every single Label slower because it has o go through JS on every draw. |
All reactions
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some passing thoughts while eating a donut. I haven't looked too closely beyond the bits I've commented on.
Sorry, something went wrong.
All reactions
Good call @farfromrefug I’ll make it native. |
All reactions
Sorry, something went wrong.
shirakaba
Successfully merging this pull request may close these issues.
Feature request: text-stroke property and/or text-shadow [Feature] add outline to label and button text
PR Checklist
What is the current behavior?
You could not easily add stroke to text and core did not support
text-stroke
.What is the new behavior?
CSS property
text-stroke
is now supported per this spec:https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-stroke
Example:
closes #3597
closes #3972