fluttercommunity / fluttercommunity/community
Flutter mobile app in IOS / Apple device on entering multiple letters in the text field, Freezes the Mobile App
- Dominant language
- No language data
- Stars
- 1.7k
- Forks
- 128
- PR merge metrics
- No merged PRs in 30d
Description
In my ios app getting freezed,while entering text value from textformfield with keyboard suggestions
is there any solutions for this?
flutter sdk 2.5.3
xcode 15.2
mac 13.7.1
iphone ios 18.3.2
`TextFormField(
key: ValueKey(customEditTextKey),
style: textStyle ??
TextStyle(
fontSize: 17.0, color: textColor ?? ColourConstant.COLOR_GREY_TEXT, fontFamily: ReleaseConstant.Montserrat, fontWeight: FontWeight.w300),
maxLength: maxLength ?? null,
focusNode: focusNode ?? null,
maxLines: maxLines,
obscureText: obscureText ?? false,
autocorrect: false,
enableSuggestions: false,
enabled: enabled ?? true,
controller: controller,
textCapitalization: textCapitalization ?? TextCapitalization.none,
keyboardType: inputType != null ? inputType : null,
textInputAction: TextInputAction.done,
textAlign: textAlign ?? TextAlign.start,
textDirection: textDirection ?? TextDirection.ltr,
inputFormatters: inputFormatters != null ? inputFormatters : null,
onChanged: onChanged,
onFieldSubmitted: onFieldSubmitted,
onEditingComplete: onEditingComplete != null ? onEditingComplete!(controller.text) : null,`
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.