How do I set iOS/Android soft-keyboard "Enter" key type in Uno 6 (ImeAction / UIReturnKeyType)? #20275
-
This worked before on var box = ...; // some TextBox or PasswordBox
#if __ANDROID__
box.ImeOptions = action == EnterKeyAction.Done ? ImeAction.Done : ImeAction.Next;
#elif __IOS__
box.ReturnKeyType = action == EnterKeyAction.Done ? UIKit.UIReturnKeyType.Done : UIKit.UIReturnKeyType.Next;
#endif |
Beta Was this translation helpful? Give feedback.
Answered by
jeromelaban
May 9, 2025
Replies: 1 comment
-
Thanks for the question, we've added the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MartinZikmund
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the question, we've added the
TextBoxExtensions.SetInputReturnType
attached property for this purpose.