I'm trying to achieve a "messenger-like" layout and can't seem to get it figured out. Basically I want a ScrollView with a label (which will contain lots of scrollable text. And at the bottom, I need an entry field with a send button beside it. But in iOS when the keyboard opens, it hides the 'Entry' control.
I know the correct way to handle the keyboard is to put the form/controls in a scroll view. But I have a ScrollView with the label already. I've tried nested ScrollViews and can't seem to get it figured out. The parent ScrollView just expands to display all the content in the label with the 'Entry' box at the bottom. The 'Entry' box is out of view if you have a lot of text and you must scroll to find it.
Is there another way to handle the keyboard so it doesn't hide the controls? Or is there a way to get the nested ScrollView to work? Thanks for the help.