Menu

Dynamic Alert Package for iOS 13 - 14 - Forest and the Trees
📰
0

Dynamic Alert Package for iOS 13 - 14 - Forest and the Trees

Forest and the Trees·Doug Marttila·about 1 month ago
#xOCijnRv
#ios#package#swift#xcode#respond#button
Reading 0:00
15s threshold

If you need to create a simple alert popup, read Paul Hudson’s post . (The post also covers how to create alerts in the newer, iOS-15 way.) I needed a way for a single view to show alerts with one button, with two buttons, and with two buttons and a destructive action (destructive actions are shown in red). I came up with a solution for Fasty , then I wanted to use it in another project, so I put it in a package. To use: Import the package Add “@State private var alertParams: AlertParams?” to the view that you want to have the Alert. At the bottom of that view, add: “.modifier(AlertModifier(alertParams: $alertParams))” Add the following (or something similar) to the view: Button(“Pop up an alert with one button and an action”) { alertParams = AlertParams(title: “One Button”, message: “One button that calls an action”, primaryButtonLabel: “The button label”) { print(“The user clicked the Alert button”) } } import SwiftUI import AlertPopUp_iOS13 struct ContentView: View { @State private var alertParams:…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More