If on a `TextField` you enable 1. `spellCheckConfiguration: const SpellCheckConfiguration(),` 2. `obscureText: true,` A couple of bad things happen: 1. Mis spellings trigger suggestions which are a function of the hidden characters, leaking info about them 2. Those suggestions don't have a visual red underline 3. Clicking on the suggestions actually doesn't do anything Presumably we just shouldn't do spell check on hidden text, so maybe there should be a lint or maybe the behavior should silently do nothing. See video: https://github.com/user-attachments/assets/13b4a58d-8d45-46d4-9292-f137b5d395f2
If on a
TextFieldyou enablespellCheckConfiguration: const SpellCheckConfiguration(),obscureText: true,A couple of bad things happen:
Presumably we just shouldn't do spell check on hidden text, so maybe there should be a lint or maybe the behavior should silently do nothing.
See video:
Screen_recording_20260430_110755.mp4