Created
April 9, 2024 22:17
-
-
Save apatronl/6102e94c84a498e038e5c4522cc3f46b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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