feat: create table

This commit is contained in:
efrilm
2025-08-03 23:33:00 +07:00
parent 617b5c54f2
commit 8431b07057
9 changed files with 393 additions and 95 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ class CustomTextField extends StatelessWidget {
final Widget? prefixIcon;
final Widget? suffixIcon;
final bool readOnly;
final int? maxLines;
final int maxLines;
final String? Function(String?)? validator;
const CustomTextField({
@@ -30,7 +30,7 @@ class CustomTextField extends StatelessWidget {
this.prefixIcon,
this.suffixIcon,
this.readOnly = false,
this.maxLines,
this.maxLines = 1,
this.validator,
});