InputDecoration has the property for changing it's style but can't find anything about it's direction
CodePudding user response:
Wrap your TextFormField inside Directionality Widget and set the direction to rtl like this :
Directionality(
textDirection: TextDirection.rtl,
child: TextFormField()
)