Issue
InputDecoration has the property for changing it's style but can't find anything about it's direction
Solution
Wrap your TextFormField inside Directionality Widget and set the direction to rtl like this :
Directionality(
textDirection: TextDirection.rtl,
child: TextFormField()
)
Answered By - Ma Jeed Answer Checked By - Mary Flores (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.