SwiftUI RenameButton
SwiftUI has a built-in RenameButton that you can use like this:
1
2
3
4
5
6
7
8
HStack {
Text("Dheeru N")
Spacer()
RenameButton()
.renameAction {
// perform click operation
}
}
SwiftUI has a built-in RenameButton that you can use like this:
1
2
3
4
5
6
7
8
HStack {
Text("Dheeru N")
Spacer()
RenameButton()
.renameAction {
// perform click operation
}
}