Use PasteButton on iOS 16

This commit is contained in:
Shadowfacts 2022-06-10 11:08:09 -04:00
parent 5f5666c40d
commit 02e229042a
1 changed files with 18 additions and 8 deletions

View File

@ -41,6 +41,15 @@ struct EditKeyForm: View {
HStack {
TextField("Secret", text: $editedKey.secret)
if #available(iOS 16.0, *) {
PasteButton(payloadType: String.self) { pasted in
if let s = pasted.first {
self.editedKey.secret = s
}
}
.labelStyle(.iconOnly)
.buttonBorderShape(.capsule)
} else {
Button {
self.editedKey.secret = UIPasteboard.general.string ?? ""
} label: {
@ -51,6 +60,7 @@ struct EditKeyForm: View {
.buttonStyle(.plain)
.disabled(!UIPasteboard.general.hasStrings)
}
}
HStack {
Text("Period")