This is just a simplified example, but I\'m trying to set this up so that when I open up this page in my Application, the first thing that happens is the keyboard pops up re
I know this is an old thread but this might work for someone as it worked for me.
protected override async void OnAppearing() { base.OnAppearing(); await Task.Delay(500); await Task.Run(() => { entryname.Focus(); }); }