fix: ui changes steward

This commit is contained in:
2025-09-29 15:00:31 +03:30
parent 2750f81308
commit e8a32d5648
22 changed files with 319 additions and 166 deletions

View File

@@ -49,7 +49,7 @@ class SearchWidget extends GetView<BaseLogic> {
hintStyle: AppFonts.yekan16.copyWith(color: AppColor.blueNormal),
filledColor: Colors.white,
filled: true,
controller: controller.textEditingController,
controller: controller.searchTextController,
onChanged: (val) => controller.searchValue.value = val,
),
),

View File

@@ -239,7 +239,7 @@ class CoreButton extends StatelessWidget {
);
case CoreButtonVariant.secondary:
return _ButtonTheme(
backgroundColor: backgroundColor ?? AppColor.greyNormal,
backgroundColor: backgroundColor ?? AppColor.darkGreyNormal,
foregroundColor: foregroundColor ?? AppColor.textColor,
borderColor: null,
);