Skip to content

Commit a92a14a

Browse files
authored
Merge pull request #8 from JoveI/no-issue/add-support-for-ios-26
[no-issue] Add support for ios 26.
2 parents 2edc597 + 32aecd4 commit a92a14a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/TransformingTextField/TransformingTextField.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ public struct TransformingTextFieldModifier: ViewModifier {
3131

3232
public func body(content: Content) -> some View {
3333
content
34-
.introspect(.textField(axis: .vertical), on: .iOS(.v16, .v17, .v18)) { textField in
34+
.introspect(.textField(axis: .vertical), on: .iOS(.v16...)) { textField in
3535
delegate.textInput = textField
3636
delegate.text = text
3737
}
38-
.introspect(.textField, on: .iOS(.v14, .v15, .v16, .v17, .v18)) { textField in
38+
.introspect(.textField, on: .iOS(.v16...)) { textField in
3939
delegate.textInput = textField
4040
delegate.text = text
4141
}

0 commit comments

Comments
 (0)