Xamarin TextCell on UWP moves when tapped - xamarin.forms

In my Xamarin Forms app, I have numerous TextCells displayed in a TableView.
When run the app on UWP, I see that the text moves slightly (slightly indented) when the cell is tapped on. I suspect this is done as a form of highlighting the cell when it is tapped.
I find this very distracting and is different from what happens on iOS or Android.
Is there a way to disable this behavior?

Related

Xamarin Forms application with half of screen size

I need to create a xamarin forms application that will work on half of the screen. As default, layouts fill the screen. How could i do this by layout or contentView or ContentPage?
Xamarin forms don't have this kind of function(half screen)
Although there a thing called widget on android,Android Floating Widget is nothing but overlay views drawn over applications. To allow drawing views over other applications.you can refer to here to know more https://www.journaldev.com/14673/android-floating-widget
and here is a related queston with the working solution:How can I do this floating action button where can run even in background mode in Xamarin forms

Drap and drop in Xamarin forms with short press

I've added drag and drop gesture to a xamarin forms app following microsoft doc :
https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/gestures/drag-and-drop
Everything works as expected.
Drag is initiated by a long press.
I would like to change this behavior by initiating a drag with a short press.
Is it possible ?

Xamarin Forms - Prevent webview from loosing focus on iOS

I'm trying to create an editor using Xamarin Forms.
The editor is a webview with content editable and a toolbar below.
You can check my current implementation here.
It works well on Android, when i tap on the button, it executes the javascript on the webview,the keyboard remains open and the webview doesn't loose focus.
On iOS the webview looses focus and the keyboard closes.
Like this:
Any idea on how can i solve this ?
What i tried so far:
Attach to the buttons an effect that calls ResignFirstResponder.
On the content editable, call focus when bluring.

ListView of Xamarin Forms for Android and Arrows of keyboard

I have developed a Xamarin forms app for Android and I have a listview and one of devices where I test it has a keyboard, so I use the device with arrow in order to control instead the mouse. But the app that I have developed, doesn’t work with keyboard.
Do you know what should I do in order to work with arrow in order to select item of listview?
Thank you

Xamarin Forms scrolling in ListView with custom ViewCell is not working for UWP

When using a custom ViewCell for a ListView, it is almost impossible to scroll in UWP. The list items gets focus shortly and the list is not scrolled. (It works fine on Android).
When using a TextCell or ImageCell for scrolling works fine, but only the Text attribute of the TextCell is shown in the ListView. The Detail attribute of the TextCell is never shown. (This also works fine for Android).
I'm using Visual Studio 2017 and latest Xamarin version.
Per comments on the question, this was resolved by updating their version of Forms.

Resources