Search code examples
fluttertextmessage

how to change the text direction of the error message for the TextFormField to make it right to left


InputDecoration has the property for changing it's style but can't find anything about it's direction

text form error


Solution

  • Wrap your TextFormField inside Directionality Widget and set the direction to rtl like this :

    Directionality(
            textDirection: TextDirection.rtl,
            child: TextFormField()
         )