feat : privacyPolicyWidget

This commit is contained in:
2025-07-23 14:41:05 +03:30
parent 93294dcfc1
commit 297c3659ea
35 changed files with 10368 additions and 275 deletions

View File

@@ -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,