Hi all,
Our users are reporting an issue on iOS 14, when they tap on text in the Editor view it scrolls off the screen.
Here is an example:
public class MainPage: ContentPage { public MainPage() { Content = new ScrollView() { Padding = new Thickness(10), Content = new Editor() { Text = "This is a test", VerticalOptions = LayoutOptions.FillAndExpand } }; } }
On iOS 13 the Editor scrolls off on first tap but I resolve that with an editor.Focused event to scroll back to 0. But after that on iOS 13 everything works fine, you can multi tap the text and highlight, cut and paste etc.
But with iOS 14, it keeps scrolling off the page and renders the page unusable for our users.
I have raised a GitHub issue for XF: https://github.com/xamarin/Xamarin.Forms/issues/12695 but if anyone can think of a workaround, I would appreciate it.
Thanks
John