chore: refactor UI consistency using design system tokens and remove LucideIcons

This commit is contained in:
2026-02-12 18:37:31 +05:30
parent d7d9a34f07
commit ad6db7d851
62 changed files with 397 additions and 370 deletions

View File

@@ -47,7 +47,7 @@ class _PaymentsPageState extends State<PaymentsPage> {
} else if (state is PaymentsError) {
return Center(
child: Padding(
padding: const EdgeInsets.all(16.0),
padding: const EdgeInsets.all(UiConstants.space4),
child: Text(
translateErrorKey(state.message),
textAlign: TextAlign.center,
@@ -218,7 +218,7 @@ class _PaymentsPageState extends State<PaymentsPage> {
],
),
const SizedBox(height: 100),
const SizedBox(height: UiConstants.space24),
],
),
),
@@ -236,7 +236,7 @@ class _PaymentsPageState extends State<PaymentsPage> {
child: Container(
padding: const EdgeInsets.symmetric(vertical: UiConstants.space2),
decoration: BoxDecoration(
color: isSelected ? UiColors.white : Colors.transparent,
color: isSelected ? UiColors.white : UiColors.transparent,
borderRadius: BorderRadius.circular(UiConstants.radiusMdValue),
),
child: Center(