I am working on a text-messaging style chat app, where there is a ListView showing the conversation in speech bubbles, and an Editor and a Send button at the bottom of the page. When the Editor is focused, the keyboard covers up the Editor making it impossible to see what you're actually typing.
The conventional solution to this in Xamarin.Forms is to wrap the page content (at least what you want to move for the keyboard) in a ScrollView, but that doesn't work in this scenario because nested scrollable controls (ListView inside a ScrollView) don't play nice in Forms.
Has anyone else found a cross-platform solution for this?