RenameButton

A button that triggers a standard rename action

RenameButton - iOS Light Mode Preview

Platform Compatibility

iOS 16.0+ iPadOS 16.0+ macOS 13.0+ watchOS 9.0+ tvOS 16.0+ visionOS 1.0+

Tags

SwiftUI Code

Docs
@State private var text = "foo"



var body: some View {
  HStack {
    Text(text)

    RenameButton()
      .padding(.leading)
      .renameAction {
      text = "bar"
    }

  }
}

Found an issue or have a suggestion?

Created: June 3, 2025Updated: June 3, 2025