Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created April 9, 2024 22:17
Show Gist options
  • Save apatronl/6102e94c84a498e038e5c4522cc3f46b to your computer and use it in GitHub Desktop.
Save apatronl/6102e94c84a498e038e5c4522cc3f46b to your computer and use it in GitHub Desktop.
import SwiftUI
struct MessageTextField: View {
@Binding var draftMessage: String
var body: some View {
TextField("Message...", text: $draftMessage)
.textFieldStyle(.plain)
.padding(8)
.overlay(
RoundedRectangle(cornerRadius: 18)
.stroke(.blue, lineWidth: 1)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment