fluttercommunity / fluttercommunity/community

Flutter mobile app in IOS / Apple device on entering multiple letters in the text field, Freezes the Mobile App

Open
#166 1 comment 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.