SwiftUI扩展以在Alert()中显示图像

时间:2020-09-26 15:43:58

标签: xcode image swiftui alert

在SwiftUI中,标准警报具有以下操作:

public struct Alert {
/// Creates an alert with one button.
public init(title: Text, message: Text? = nil, dismissButton: Alert.Button? = nil)

/// Creates an alert with two buttons.
/// The system determines the visual ordering of the buttons.
public init(title: Text, message: Text? = nil, primaryButton: Alert.Button, secondaryButton: Alert.Button)
 }

是否可以为此警报编写扩展名,从而使我可以在标题和消息之间添加图像,所以可以这样使用它:

警报(标题:“标题”,图像:“ image.png”,消息:“消息文本”,dismissButton:Alert.Button)

enter image description here

还是我必须为此创建自己的AlertController?

0 个答案:

没有答案