seabear.dev
@seabear.dev
Proportional corner radius that works on any device:

view.adaptiveCornerRadius(
CornerRadiusStyle.round,
size: size
)

Production-tested in Tesserae.
100% Swift, zero dependencies.

github.com/seabearDEV/SeaBearKit
GitHub - seabearDEV/SeaBearKit: A collection of ready-to-use SwiftUI layouts and UI components to accelerate iOS app development. Drop-in code for common screens and patterns.
A collection of ready-to-use SwiftUI layouts and UI components to accelerate iOS app development. Drop-in code for common screens and patterns. - seabearDEV/SeaBearKit
github.com
November 17, 2025 at 2:22 AM
Clean conditional styling:

Text("Hello")
.if(isHighlighted) { view in
view.foregroundStyle(.red)
}

Unified shadows with press states:

Button("Action") { }
.glassShadow(isPressed: isPressed,
intensity: .prominent)
November 17, 2025 at 2:22 AM