Is there any way to have no title section in an Action Sheet? The Action Sheet definition in the SwiftUI code is as follows:
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
}
Since title only conforms to Text, I thought perhaps adding just Text("") would do the job; however, this instead keeps the space for the title empty, rather than removing it. Giving nil instead of Text("") also doesn't work.
Also, is there any way to give an Action Sheet's button a view, like with the following:
struct ActionItem: View {
var body: some View {
HStack {
Image(systemName: "phone")
Spacer()
Text("Call 1-408-123-4567")
}
}
}
Apple has answered our calls with iOS 15 and the newly introduced
confirmationDialog
API.ActionSheet
has also been deprecated in this release.ConfirmationDialog
has been added as a view modifier and can be used on any view, very similar to the.actionSheet
API we were using prior. When using the new dialog we can specify that the title is hidden and can use the Button API forrole
to control button appearance.Below is an illustration of using it on a simple View.