fix: pull origin dev

This commit is contained in:
2024-02-12 17:04:01 +07:00
23 changed files with 569 additions and 114 deletions

View File

@@ -70,7 +70,6 @@ class TextFormView extends StatelessWidget {
this.preffixIconConstraints,
this.disableColor = false,
this.enableInteractiveSelection = true,
this.contentPadding,
this.focusNode,
this.isTextAlignCenter = false,
this.prefix})
@@ -97,8 +96,6 @@ class TextFormView extends StatelessWidget {
name,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: ColorPalette.slate800
// color: ColorPalette.greyLight,
),
),
@@ -116,8 +113,6 @@ class TextFormView extends StatelessWidget {
name,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: ColorPalette.slate800
),
)
: const SizedBox(),
@@ -133,7 +128,7 @@ class TextFormView extends StatelessWidget {
initialValue: initialValue,
enabled: enabled,
controller: ctrl,
// maxLength: maxLength,
maxLength: maxLength,
keyboardType: keyboardType,
onTap: onTap,
onEditingComplete: onSubmit,
@@ -195,7 +190,10 @@ class TextFormView extends StatelessWidget {
suffixIconConstraints: suffixIconConstraints,
prefixIconConstraints: preffixIconConstraints,
prefix: prefix,
contentPadding: contentPadding ?? EdgeInsets.zero
contentPadding: contentPadding ?? const EdgeInsets.symmetric(
horizontal: 8.0,
vertical: 16.0,
)
),
)
],