At my application, there’s a text field where the user will type their account e-mail.
With Java I can easily make the Android keyboard start with a lower-case letter by using
EditText text = new EditText(context);
text.setInputType(android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_FLAG_MULTI_LINE);
How is it possible to achieve the same with Delphi 10 Seattle?