-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Clips to bounds is removed on Text View #704
Comments
I am almost done a rework on the TextView, called Editor. I will double check this is correctly setup before I ship it. Thank you! |
I believe these two are connected, #703. |
This is now fixed and will be released tomorrow. Thank you! |
Sorry, I didn't get a chance to release the The version in I'll close this issue when I make the release :) All the best! |
Hey, please find your feature request in Material 2.6.0 and a sample TextView project. Thank you and all the best! |
add a text view and set its text to something that overflow its size. On the Interface Builder ensure that it is marked
clipsToBounds
and have a look that its preview works fine (clipping it). Run the app and check that the text field shows the overflowed area. Solution? Manually addself.textView.clipsToBounds = true
onviewDidLoad
, but it shouldn't be necessary.The text was updated successfully, but these errors were encountered: