I'm getting a "Null check operator used on null value" error, and it's specifically happening when the software keyboard activates on a particular screen in local run mode(simulator and real device). Interestingly, it works perfectly fine when I use a hardware keyboard.
Here's a quick rundown of my setup:
I have a grid displaying items queried from Supabase. Each item has a submenu, which appears as an alert. One of the options in this submenu is to copy an item.
When a user taps "copy," another alert pops up. This alert is passed the original item's title and ID. Inside this alert, there's a text field where the user can modify or keep the title for the new, copied item.
The problem arises precisely when the software keyboard is brought up to interact with this text field.
Has anyone encountered a similar issue or have any insights into what might be causing this null check error specifically with the software keyboard? Any suggestions for debugging or potential solutions would be greatly appreciated!
Thanks in advance for your help!