feat : privacyPolicyWidget
This commit is contained in:
@@ -48,6 +48,7 @@ class RTextField extends StatefulWidget {
|
||||
final bool? enableSuggestions;
|
||||
final TextInputAction? textInputAction;
|
||||
final double? height;
|
||||
final Iterable<String>? autofillHints;
|
||||
|
||||
const RTextField({
|
||||
super.key,
|
||||
@@ -71,6 +72,7 @@ class RTextField extends StatefulWidget {
|
||||
this.textInputAction,
|
||||
this.keyboardType,
|
||||
this.focusNode,
|
||||
this.autofillHints,
|
||||
|
||||
// ⚙️ Input styling
|
||||
this.textAlign,
|
||||
@@ -219,6 +221,7 @@ class _RTextFieldState extends State<RTextField> {
|
||||
autocorrect: widget.autocorrect ?? true,
|
||||
enableSuggestions: widget.enableSuggestions ?? true,
|
||||
textInputAction: widget.textInputAction,
|
||||
autofillHints: widget.autofillHints,
|
||||
decoration: InputDecoration(
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
errorStyle: widget.errorStyle,
|
||||
|
||||
Reference in New Issue
Block a user