TF-1884 Support RTL mode for TextFormField
(cherry picked from commit 7c12f65a037bb5a1b6cef91938af1ec1dac20a9b)
This commit is contained in:
@@ -102,10 +102,10 @@ class EditTextDialogBuilder {
|
||||
textAlign: TextAlign.center),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 20),
|
||||
child: TextFormField(
|
||||
child: TextFormFieldBuilder(
|
||||
keyboardType: TextInputType.visiblePassword,
|
||||
onChanged: (value) => _onTextChanged(value, setState),
|
||||
autofocus: true,
|
||||
onTextChange: (value) => _onTextChanged(value, setState),
|
||||
autoFocus: true,
|
||||
controller: _textController,
|
||||
decoration: InputDecoration(
|
||||
errorText: _error,
|
||||
|
||||
Reference in New Issue
Block a user