-
-
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(ios): View background UI rework #10374
feat(ios): View background UI rework #10374
Conversation
It can be revisited on a separate PR for both platforms
@CatchABus Great job, I think the shadows look even better. On the other hand is it possible that the shadow grows with the animation but is not respecting the origen of the view? I think I'm seeing this behavior. This comes in relation to #10250 I have origenY="0" in the view but the shadow seems to grow from 0.5 Grabacion.de.pantalla.2023-09-07.a.las.0.55.32.mov |
Tbh, I forgot to try animations with different origen. I'll check it and let you know! |
PR Checklist
What is the current behavior?
Right now, we have certain limitations regarding iOS border colors and radius, shadows, and animating views that own any of those.
What is the new behavior?
This is a series of improvements regarding iOS background shadows and borders.
Animation
Reusable native view layers
CALayer
instances won't have to be recreated when background gets redrawnBorders
Shadows
clipToBounds
solutions as it's nested in super layerUIScrollView
UIScrollView
will maintain position of nestedCALayers
(e.g. gradient, shadow, border)Button
backgroundColorProperty
native getter/setter as it broke existing behaviourListPicker
backgroundColorProperty
native getter/setter as it broke existing behaviourView disposal
Utils
extendPointsToTargetY
Closes #10250 #9869 #6919 .
Partially fixes #6919 (needs fix for android)
Additions for #4762
Removed #9524 changes as they broke background handling
BREAKING CHANGES:
CSSShadow
was renamed intoShadowCSSValues
.