Reading time: 2 min

This recipe shows how to show an alert dialog from anywhere in the SwiftUI app. Normally, alert is tied to a specific view, and its content is handled by that view's state. This solution, however, makes it so that the alert is defined in just a single place and is always presented on top of current view.

Continue Reading...

04 Feb 2022

SwiftUI Toast

swiftui

Reading time: 2 min

This recipe shows how to implement an Android-like "toast" notification in SwiftUI.

Continue Reading...

Reading time: 1 min

This quick recipe shows how to support nested NavigationLinks and allow the user to move back programatically. As always, SwiftUI throws a curveball even on trivial tasks such as this.

Continue Reading...

Reading time: 6 min

This recipe shows how to add easy-to-use segues to your SwiftUI navigation. They allow for presenting views using common UIKIt Segue types - push, modal and popover.

Continue Reading...

Reading time: 1 min

This recipe shows how to update navigation bar when the content underneath it scrolls.

Continue Reading...