Swiftpack.co - divadretlaw/CustomAlert as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by divadretlaw.
divadretlaw/CustomAlert v2.4.0
🔔 Custom Alert for SwiftUI
⭐️ 118
🕓 33 weeks ago
iOS
.package(url: "https://github.com/divadretlaw/CustomAlert.git", from: "v2.4.0")

CustomAlert

Why

In iOS Alerts cannot contain Images or anything other than Text. This allows you to easily customize the message part with any custom view.

While the alert is completely rebuilt in SwiftUI, it has been designed to look and behave exactly like a native alert. The alert uses it's own window to be displayed and utilizes accessibility scaling but with the advantage of a custom view.

If the content is too large because the text is too long or the text doesn't fit because of accessibility scaling the content will scroll just like in a SwiftUI Alert.

Usage

SwiftUI Alert Custom Alert
Native Alert Custom Alert

You can easily add an Image or change the Font used in src="https://raw.github.com/divadretlaw/CustomAlert/main/lert, or anything else to your imagination.

Something simple with an image and a text field

<img style="max-width:100%;" src="src="https://raw.github.com/divadretlaw/CustomAlert/main/es/CustomAlert/Documentation.docc/Resources/Fancy.png" width="300">

Or more complex layouts

The API is very similar to the SwiftUI Alerts

.customAlert("Some Fancy Alert", isPresented: $showAlert) {
    Text("I'm a custom Message")
        .font(.custom("Noteworthy", size: 24))
    Image(systemName: "swift")
        .resizable()
        .scaledToFit()
        .frame(maxHeight: 100)
        .foregroundColor(.blue)
} actions: {
    Button {
        // some Action
    } label: {
        Label("Swift", systemImage: "swift")
    }
    
    Button(role: .cancel) {
        // some Action
    } label: {
        Text("Cancel")
    }
}

You can create Side by Side Buttons using MultiButton

.customAlert("Alert with Side by Side Buttons", isPresented: $showAlert) {
    Text("Choose left or right")
} actions: {
	MultiButton {
	    Button {
	        // some Action
	    } label: {
	        Text("Left")
	    }
	    
	    Button {
	        // some Action
	    } lasrc="https://raw.github.com/divadretlaw/CustomAlert/main/{
	        Text("Right")
	    }
    }
}

The alert is customizable via the Environment

.configureCustomAlert { configuration in
    // Adapt tsrc="https://raw.github.com/divadretlaw/CustomAlert/main/fault configuration
}

You can also display an Alert inline, within a List for example

InlineAlert {
    // Content
} actions: {
    // Actions
}

Install

SwiftPM

https://github.com/divadretlaw/CustomAlert.git

License

See LICENSE

Copyright © 2024 David Walter (www.davidwalter.at)

GitHub

link
Stars: 118
Last commit: 2 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics