-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
feat(css): text-stroke support #10399
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. |
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.
Good call @farfromrefug I’ll make it native. |
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