Skip to content

ViewModifiers

Nick Sarno edited this page Feb 10, 2024 · 2 revisions

onNotificationRecieved

Listen for publishes from a Notification.

.onNotificationRecieved(name: UIApplication.didBecomeActiveNotification) { notification in
                
}

onFirstAppear

The first time a View appears.

.onFirstAppear {
                
}

onFirstDisappear

The first time a View disappears.

.onFirstDisappear {
                
}

asStretchyHeader

Use for header cells within a ScrollView to stretch the cell when user scrolls down too far (similar to Spotify UX).

.asStretchyHeader(startingHeight: 300)
Clone this wiki locally