feat :
new auth page
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user