Skip to content

Commit 219fc8d

Browse files
committed
chore: Update Example
1 parent 547c823 commit 219fc8d

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

Example/Example/ContentView.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ struct ContentView: View {
2727
.font(.system(size: 14, weight: .bold, design: .default))
2828
RespondableTextField(text: $text1, tag: 0, isFirstResponder: true, placeholder: "1st") { value in
2929
print("onEditing: \(value)")
30-
} onCommitted: {
31-
print("onCommitted")
3230
} didBeginEditing: {
3331
print("didBeginEditing")
3432
} didEndEditing: {
@@ -44,8 +42,6 @@ struct ContentView: View {
4442
.font(.system(size: 14, weight: .bold, design: .default))
4543
RespondableTextField(text: $text2, tag: 1, placeholder: "2nd") { value in
4644
print("onEditing: \(value)")
47-
} onCommitted: {
48-
print("onCommitted")
4945
} didBeginEditing: {
5046
print("didBeginEditing")
5147
} didEndEditing: {
@@ -63,8 +59,6 @@ struct ContentView: View {
6359
.font(.system(size: 14, weight: .bold, design: .default))
6460
RespondableTextField(text: $text3, tag: 2, placeholder: "3rd") { value in
6561
print("onEditing: \(value)")
66-
} onCommitted: {
67-
print("onCommitted")
6862
} didBeginEditing: {
6963
print("didBeginEditing")
7064
} didEndEditing: {
@@ -83,8 +77,6 @@ struct ContentView: View {
8377
.font(.system(size: 14, weight: .bold, design: .default))
8478
RespondableTextField(text: $text4, tag: 3, placeholder: "4th") { value in
8579
print("onEditing: \(value)")
86-
} onCommitted: {
87-
print("onCommitted")
8880
} didBeginEditing: {
8981
print("didBeginEditing")
9082
} didEndEditing: {

0 commit comments

Comments
 (0)