Flutter/Android Error : SamsungSmartSuggestion keeps stopping

mmmYoung·2022년 3월 15일
0

플러터

목록 보기
2/11

SamsungSmartSuggestions이(가) 계속 중단됨
SamsungSmartSuggestion keeps stopping

TextField 위젯 사용시 삼성 갤럭시에서 발생하던 문제...
나의 경우에는 S10e를 사용했고, 플러터 2.10 버전,
텍스트 칸을 터치해 키보드를 열 때 간헐적으로(그리고 자주) 발생했다.
경고 팝업을 무시하고 진행해도 앱 내에서는 문제가 없었고...(그냥 끊임없이 팝업이 뜰 뿐)
아직도 원인도 해결된 이유도 모르겠다...!

해결 방법

단순히 textfield를 textformfield로 바꿔주고, controller만 추가해줬다. 감상평 등록 창에서 발생한 에러인데, 편집 창에서는 에러가 발생하지 않는 걸 보니..둘이 위젯이 달랐더라. 해결법 우연히 발견...!

에러 발생 코드

TextField(
	maxLines: null,
    decoration: InputDecoration(
    	contentPadding: EdgeInsets.fromLTRB(15, 15, 3, 15),
        labelText: '  감상평',
        labelStyle: TextStyle(
        	color: Color(0xFFF5F5F1),
            fontWeight: FontWeight.bold),),
	onChanged: (String txt2) {
    	this.txt2 = txt2;
    	},)

수정 코드 (Solution Code)

TextFormField(
	controller: txtWhat,
    maxLines: null,
    decoration: InputDecoration(
    	contentPadding: EdgeInsets.fromLTRB(15, 15, 3, 15),
        labelText: '  감상평',
        labelStyle: TextStyle(
        	color: Color(0xFFF5F5F1),
            fontWeight: FontWeight.bold),),
	onChanged: (String txt2) {
    	this.txt2 = txt2;
        },)

우연히 발견했다..

profile
안냐세여

0개의 댓글