Hello!
Well, yes it sure is!
Once you've created the DialogPrompt, you'll have a reference to it. Like so:
DialogPrompt dialogPrompt = DialogManager.ShowPrompt...
You can just do:
dialogPrompt.firstInputField to access the MaterialInputField.
And with that you can do... pretty much anything?
- remove the floating hint:
dialogPrompt.firstInputField.floatingHint = false;
- add a textValidator
dialogPrompt.firstInputField.customTextValidator = yourTextValidatorHere;
Have a nice day!
~ Yohan