有什么方法可以在操作表中没有标题部分?SwiftUI 代码中的 Action Sheet 定义如下:
public struct ActionSheet {
/// Creates an action sheet with the provided buttons.
public init(title: Text, message: Text? = nil, buttons: [ActionSheet.Button] = [.cancel()])
/// A button representing an operation of an action sheet presentation.
public typealias Button = Alert.Button
}
由于 title 只符合 Text,我想也许只添加 Text("") 就可以了;但是,这反而使标题的空间保持空白,而不是删除它。给 nil 而不是 Text("") 也不起作用。
此外,是否有任何方法可以为操作表的按钮提供视图,如下所示:
struct ActionItem: View {
var body: some View {
HStack {
Image(systemName: "phone")
Spacer()
Text("Call 1-408-123-4567")
}
}
}