This commit is contained in:
2026-07-01 16:20:30 +03:00
parent 64a3f4e34e
commit e3c60c4775
35 changed files with 164 additions and 103 deletions
+2 -2
View File
@@ -391,7 +391,7 @@ class _AddTransactionScreenState extends ConsumerState<AddTransactionScreen>
data: Theme.of(context).copyWith(
colorScheme: Theme.of(
context,
).colorScheme.copyWith(primary: AppColors.accent),
).colorScheme.copyWith(primary: const Color(0xFF7C6DED)),
),
child: child!,
),
@@ -995,7 +995,7 @@ class _ToAccountDropdownOverlay extends ConsumerWidget {
const Icon(
Icons.check_rounded,
size: 16,
color: Color(0xFF7C6DED),
color: const Color(0xFF7C6DED),
),
],
],
@@ -73,7 +73,7 @@ class AccountSelector extends ConsumerWidget {
const Icon(
Icons.account_balance_wallet_rounded,
size: 18,
color: Color(0xFF7C6DED),
color: const Color(0xFF7C6DED),
),
const SizedBox(width: 10),
Flexible(
@@ -244,7 +244,7 @@ class AccountDropdownOverlay extends ConsumerWidget {
const Icon(
Icons.check_rounded,
size: 16,
color: Color(0xFF7C6DED),
color: const Color(0xFF7C6DED),
),
],
],
@@ -105,22 +105,22 @@ class _AddCategoryChip extends StatelessWidget {
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
decoration: BoxDecoration(
color: AppColors.accent.withOpacity(0.12),
color: const Color(0xFF7C6DED).withOpacity(0.12),
borderRadius: BorderRadius.circular(12),
border: Border.all(
color: AppColors.accent.withOpacity(0.5),
color: const Color(0xFF7C6DED).withOpacity(0.5),
width: 1,
),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(Icons.add_rounded, color: AppColors.accent, size: 16),
const Icon(Icons.add_rounded, color: const Color(0xFF7C6DED), size: 16),
const SizedBox(width: 6),
Text(
label,
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.accent,
color: const Color(0xFF7C6DED),
fontWeight: FontWeight.w600,
),
),
@@ -43,7 +43,7 @@ class NoteField extends StatelessWidget {
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: const BorderSide(color: Color(0xFF7C6DED), width: 1.5),
borderSide: BorderSide(color: const Color(0xFF7C6DED), width: 1.5),
),
),
onChanged: onChanged,