I'm trying to just allow a textfield to allow any input with text and emojis, no special character/symbols because it gives all sorts of error.
I only know how to remove all special characters with inputFormatter, but it also disable all emojis.
inputFormatters: [new WhitelistingTextInputFormatter(RegExp("[a-zA-Z]")),],
Does anyone know how to do this?