I am using a list view for a chat and TextInputField as a place to type the message. I encounter a problem when the keyboard appears. When the user starts to type the message in the text field, the keyboard appears but the last messages are blocked by it.
Shrink wrap is enabled and the list view is inside a container.
I have thought about solving it this way: a user presses on the text field and the listview scrolls to the bottom but the textInputField does not have an on Tap action. I was also unsure if the keyboard overlaps with the listview or if the list does not scroll to the bottom. Right now it seems to me that it overlaps, but it is difficult to say.
Does anyone have any solutions to this problem?