在 Xcode 的 Package Dependencies 中添加 git URL。
https://github.com/ryohey/Toaster.git
Button("Show Toast") {
toast.present(.defaultSuccess(text: "Success!"))
}
@StateObject var toast = ToastMessages()
.toast(_, layout:)
到宿主视图。toast.present()
struct ContentView: View {
@StateObject var toast = ToastMessages()
var body: some View {
VStack {
Button("Show Toast") {
toast.present(.defaultSuccess(text: "Success!"))
}
}
.padding()
.toast(
toast,
layout: .init(padding: .init(
top: 0,
leading: 16,
bottom: 16,
trailing: 16
))
)
}
}