xamarin / Xamarin.Forms

Xamarin.Forms is no longer supported. Migrate your apps to .NET MAUI.
https://aka.ms/xamarin-upgrade
Other
5.64k stars 1.88k forks source link

[Bug] Next button on iPhone keyboard with text entries in a List. #15771

Closed pkvaranasi closed 1 year ago

pkvaranasi commented 1 year ago

Description

Next button in the keyboard on iPhones.

Steps to Reproduce

  1. Any Xamarin Forms application installed on iPhone, with many text entries in the ListView.
  2. Any Xamarin Forms application installed on iPhone, with many text entries in the CollectionView.

Expected Behavior

Like Android keyboard, having a Next button in the keyboard on iPhone, in Xamarin Forms apps, to shift the focus from one entry to the next entry in the list.

Actual Behavior

No Next button available in the default iPhone keyboard to navigate the focus from one text entry to the next entry in the list.

Basic Information

Environment

All Environments

Build Logs

No issues with builds -->

jfversluis commented 1 year ago

You can set ReturnType="Next" on the Entry, I hope that this doesn't only show it visually but will also allow you to hop to the next Entry. If not, here is some code that might be able to help you with that.

Unfortunately at this point in the Xamarin.Forms lifecycle we won't be implementing anything new to support this. You should be able to make this work yourself with a plugin or custom renderer.