Various improvements

This commit is contained in:
Ilya Laktyushin
2026-01-25 22:17:49 +04:00
parent 7f59789ffc
commit 0d12dd29ad
190 changed files with 16735 additions and 5317 deletions

View File

@@ -114,11 +114,15 @@ public final class NavigationStackComponent<ChildEnvironment: Equatable>: Compon
override init(frame: CGRect) {
super.init(frame: frame)
self.dimView.alpha = 0.0
self.dimView.backgroundColor = UIColor.black.withAlphaComponent(0.2)
self.dimView.isUserInteractionEnabled = false
self.addSubview(self.dimView)
self.clipsToBounds = true
self.layer.cornerRadius = 40.0
self.layer.maskedCorners = [.layerMinXMinYCorner, .layerMaxXMinYCorner]
}
required init?(coder: NSCoder) {