What's New
-
Configurable Animation Overrides (#46)
You can now fully customize the transition animations of a
DynamicNotchusing the newDynamicNotchTransitionConfiguration. Override the default opening, closing, and conversion animations, or enableskipIntermediateHidesfor faster, more direct state transitions between expanded and compact states :)let notch = DynamicNotch(style: .auto) { Text("Hello") } notch.transitionConfiguration = .init( openingAnimation: .spring(duration: 0.3), skipIntermediateHides: true )