How do I make a button like the blue one shown in the image?
Button("Done") {
}
CodePudding user response:
It is a default style button and is managed by keyboard shortcut, like
var body: some View {
HStack {
Button("Done") {}
Button("Clone") {}
.keyboardShortcut(.defaultAction) // << here !!
}
}