We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34e418 commit 826252eCopy full SHA for 826252e
src/textfield/textfield.ios.ts
@@ -171,7 +171,10 @@ export class TextField extends TextFieldBase {
171
}
172
173
this.firstEdit = false;
174
-
+ if (this.width === 'auto') {
175
+ // if the textfield is in auto size we need to request a layout to take the new text width into account
176
+ this.requestLayout();
177
+ }
178
return true;
179
// return super.textFieldShouldChangeCharactersInRangeReplacementString(textField, range, replacementString);
180
0 commit comments