chore: update devtools options to include new extensions, increment package versions, and refactor authentication logic for improved user experience
This commit is contained in:
@@ -201,8 +201,8 @@ class _RTextFieldState extends State<RTextField> {
|
||||
child: Padding(
|
||||
padding: widget.padding ?? EdgeInsets.zero,
|
||||
child: TextFormField(
|
||||
textAlignVertical: TextAlignVertical.center,
|
||||
controller: widget.controller,
|
||||
|
||||
focusNode: widget.focusNode,
|
||||
textAlign: widget.textAlign ?? TextAlign.start,
|
||||
readOnly: widget.readonly,
|
||||
@@ -229,8 +229,12 @@ class _RTextFieldState extends State<RTextField> {
|
||||
textInputAction: widget.textInputAction,
|
||||
autofillHints: widget.autofillHints,
|
||||
decoration: InputDecoration(
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
contentPadding: EdgeInsets.symmetric(
|
||||
horizontal: 16,
|
||||
vertical: widget.height / 3,
|
||||
),
|
||||
errorStyle: widget.errorStyle,
|
||||
|
||||
errorMaxLines: 1,
|
||||
isDense: widget.isDense,
|
||||
suffix: widget.suffix,
|
||||
|
||||
Reference in New Issue
Block a user