new auth page
This commit is contained in:
2025-08-02 12:19:25 +03:30
parent 6040ca9f86
commit fae6703d8d
7 changed files with 120 additions and 79 deletions

View File

@@ -49,6 +49,7 @@ class RTextField extends StatefulWidget {
final TextInputAction? textInputAction;
final double? height;
final Iterable<String>? autofillHints;
final InputBorder? focusedBorder;
const RTextField({
super.key,
@@ -84,6 +85,7 @@ class RTextField extends StatefulWidget {
this.hintStyle,
this.labelStyle,
this.errorStyle,
this.focusedBorder,
// 🎨 Decorations
this.suffixIcon,
@@ -243,7 +245,7 @@ class _RTextFieldState extends State<RTextField> {
counter: widget.showCounter ? null : const SizedBox(),
hintStyle: widget.hintStyle,
enabledBorder: widget._inputBorder,
focusedBorder: widget._inputBorder,
focusedBorder: widget.focusedBorder ?? widget._inputBorder,
border: widget._inputBorder,
),
),