How to move the cursor in Entry to the end?

How to move the cursor in Entry to the end?

BY 24 Apr 2020 Tizen .NET

I want that when opening a popup, in which there is an input field (Xamarin.Forms.Entry), the cursor immediately becomes at its end. So that the user does not do unnecessary actions to move the cursor

A very simple task, but I could not find a single solution.

I tried:

nameEntry.Focus();
nameEntry.CursorPosition = 10
nameEntry.Focus();
nameEntry.Text.Insert(0, app.GetName());
Written by