/// <summary> /// Enter the given text into an element matching the current query, and then dismiss the keyboard /// </summary> /// <param name="query">The current query</param> /// <param name="text">The text to enter</param> public static QueryEx EnterTextAndDismiss(this QueryEx query, string text) { query.EnterText(text); App.DismissKeyboard(); return(query); }