Update textfield_raw.dart

This commit is contained in:
Ankit Mahato
2025-04-06 03:38:42 +05:30
parent e7461e19ae
commit 7b0887613d

View File

@@ -7,6 +7,7 @@ class ADRawTextField extends StatelessWidget {
this.onChanged,
this.controller,
this.hintText,
this.hintTextStyle,
this.style,
this.readOnly = false,
});
@@ -14,6 +15,7 @@ class ADRawTextField extends StatelessWidget {
final void Function(String)? onChanged;
final TextEditingController? controller;
final String? hintText;
final TextStyle? hintTextStyle;
final TextStyle? style;
final bool readOnly;
@@ -28,6 +30,7 @@ class ADRawTextField extends StatelessWidget {
isDense: true,
border: InputBorder.none,
hintText: hintText,
hintStyle: hintTextStyle,
contentPadding: kPv8,
),
onTapOutside: (PointerDownEvent event) {