-
@LeoNatan I'm curious how you're achieving the seamless blur effect behind a presented Here's a screenshot of two However, in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello, You can find the implementation here: UIKit has a hidden property which synchronizes between visual effect views, which the system uses internally to achieve what you need. I just investigated and also use it for the popup bar. The idea is to set a group name that is the same for the bottom bar’s background and and the popup bar’s background. As long as the effect properties are the same, it will be seamless. BTW, nice eye for details! 🙂 Not many notice these tiny details. |
Beta Was this translation helpful? Give feedback.
Hello,
You can find the implementation here:
LNPopupController/LNPopupController/LNPopupController/Private/LNPopupBar.m
Line 428 in be669a1
LNPopupController/LNPopupController/LNPopupController/Private/LNPopupBar.m
Line 441 in be669a1
UIKit has a hidden property which synchronizes between visual effect views, which the system uses internally to achieve what you need. I just investigated and also use it for the popup bar.
The idea is to set a group nam…