728x90
TextField에서 복사나 붙여 넣기가 안될 때 아래 항목을 살펴보세요.
TextFormField(
enableInteractiveSelection: false,
...
),
enableInteractiveSelection이 false로 되어있지는 않으신가요? true로 바꿔주세요.
TextFormField(
contextMenuBuilder: null,
...
).
contextMenuBuilder가 null로 되어있으신가요? 해당구문을 아예 지워주시거나, contextMenuBuilder를 직접 만들어 넣어주세요.
'Flutter > 오류해결' 카테고리의 다른 글
[Flutter] main.dart not found (0) | 2023.10.08 |
---|---|
android sdk - adb 인식 오류 (0) | 2023.09.08 |
[Flutter] Could not find package "build_runner". Did you forget to add a dependency? (0) | 2023.01.25 |
[Flutter] type 'List<dynamic>' is not a subtype of type 'List<String>' (0) | 2023.01.23 |
Flutter) CERTIFICATE_VERIFY_FAILED 에러 해결방법 (2) | 2022.09.28 |