Change LabelText Direction To RTL In InputDecoration() Flutter


Answer :

Simply use Directionality:

new Directionality(     textDirection: TextDirection.rtl,     child: TextField(      textAlign: TextAlign.right,      controller: _textEdittingControler_bookName,      autofocus: true,      decoration: new InputDecoration(                 labelText: "افزودن کتاب",                 hintText: "نام کتاب را وارد کنید"                 ),      ) 

Directionality's docs


Can be used textAlign

            TextFormField(               textAlign: TextAlign.right,               decoration: InputDecoration(                 hintText: 'ادخل تفاصيل الكتابة الخاصة بك',               ), 

Comments

Popular posts from this blog

Chemistry - Bond Angles In NH3 And NCl3

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?