This commit is contained in:
2026-03-20 10:58:35 +03:00
parent 047d5bdf36
commit d8b0da1448
5 changed files with 259 additions and 204 deletions
+30 -19
View File
@@ -104,38 +104,41 @@ class AppTheme {
static ThemeData get lightTheme { static ThemeData get lightTheme {
final base = ThemeData.light(useMaterial3: true); final base = ThemeData.light(useMaterial3: true);
final textTheme = GoogleFonts.poppinsTextTheme(base.textTheme).apply( final textTheme = GoogleFonts.poppinsTextTheme(base.textTheme).apply(
bodyColor: const Color(0xFF1A1A24), bodyColor: const Color(0xFF1A1A2E),
displayColor: const Color(0xFF1A1A24), displayColor: const Color(0xFF1A1A2E),
); );
return base.copyWith( return base.copyWith(
textTheme: textTheme, textTheme: textTheme,
scaffoldBackgroundColor: const Color(0xFFF5F5F5), scaffoldBackgroundColor: const Color(0xFFF0F0F7),
colorScheme: const ColorScheme.light( colorScheme: const ColorScheme.light(
surface: Colors.white, surface: Colors.white,
primary: AppColors.accent, primary: AppColors.accent,
secondary: AppColors.accent, secondary: AppColors.accent,
onPrimary: Colors.white, onPrimary: Colors.white,
onSurface: Color(0xFF1A1A24), onSurface: Color(0xFF1A1A2E),
onBackground: Color(0xFF1A1A2E),
background: Color(0xFFF0F0F7),
), ),
cardTheme: CardThemeData( cardTheme: CardThemeData(
color: Colors.white, color: Colors.white,
elevation: 0, elevation: 2,
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
), ),
margin: EdgeInsets.zero, margin: EdgeInsets.zero,
), ),
appBarTheme: AppBarTheme( appBarTheme: AppBarTheme(
backgroundColor: const Color(0xFFF5F5F5), backgroundColor: Colors.white,
foregroundColor: const Color(0xFF1A1A2E),
elevation: 0, elevation: 0,
centerTitle: false, centerTitle: false,
titleTextStyle: GoogleFonts.poppins( titleTextStyle: GoogleFonts.poppins(
color: const Color(0xFF1A1A24), color: const Color(0xFF1A1A2E),
fontSize: 20, fontSize: 20,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
), ),
iconTheme: const IconThemeData(color: Color(0xFF1A1A24)), iconTheme: const IconThemeData(color: AppColors.accent),
), ),
navigationBarTheme: NavigationBarThemeData( navigationBarTheme: NavigationBarThemeData(
backgroundColor: Colors.white, backgroundColor: Colors.white,
@@ -149,7 +152,7 @@ class AppTheme {
); );
} }
return GoogleFonts.poppins( return GoogleFonts.poppins(
color: const Color(0xFF666666), color: const Color(0xFF9999BB),
fontSize: 12, fontSize: 12,
); );
}), }),
@@ -157,26 +160,26 @@ class AppTheme {
if (states.contains(WidgetState.selected)) { if (states.contains(WidgetState.selected)) {
return const IconThemeData(color: AppColors.accent); return const IconThemeData(color: AppColors.accent);
} }
return const IconThemeData(color: Color(0xFF666666)); return const IconThemeData(color: Color(0xFF9999BB));
}), }),
), ),
inputDecorationTheme: InputDecorationTheme( inputDecorationTheme: InputDecorationTheme(
filled: true, filled: true,
fillColor: Colors.white, fillColor: const Color(0xFFEEEEF8),
border: OutlineInputBorder( border: OutlineInputBorder(
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(8),
borderSide: const BorderSide(color: Color(0xFFE0E0E0)), borderSide: BorderSide.none,
), ),
enabledBorder: OutlineInputBorder( enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(8),
borderSide: const BorderSide(color: Color(0xFFE0E0E0)), borderSide: BorderSide.none,
), ),
focusedBorder: OutlineInputBorder( focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(8),
borderSide: const BorderSide(color: AppColors.accent, width: 1.5), borderSide: const BorderSide(color: AppColors.accent, width: 1.5),
), ),
labelStyle: const TextStyle(color: Color(0xFF666666)), labelStyle: const TextStyle(color: Color(0xFF9999BB)),
hintStyle: const TextStyle(color: Color(0xFF999999)), hintStyle: const TextStyle(color: Color(0xFF9999BB)),
), ),
elevatedButtonTheme: ElevatedButtonThemeData( elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
@@ -193,9 +196,17 @@ class AppTheme {
), ),
), ),
dividerTheme: const DividerThemeData( dividerTheme: const DividerThemeData(
color: Color(0xFFE0E0E0), color: Color(0xFFDDDDEE),
thickness: 1, thickness: 1,
), ),
iconTheme: const IconThemeData(color: AppColors.accent),
chipTheme: ChipThemeData(
backgroundColor: const Color(0xFFEEEEF8),
selectedColor: AppColors.accent,
labelStyle: GoogleFonts.poppins(
color: const Color(0xFF1A1A2E),
),
),
); );
} }
} }
+109 -42
View File
@@ -26,10 +26,16 @@ class _AddTransactionScreenState extends ConsumerState<AddTransactionScreen> {
final _formKey = GlobalKey<FormState>(); final _formKey = GlobalKey<FormState>();
final _amountController = TextEditingController(); final _amountController = TextEditingController();
final _noteController = TextEditingController(); final _noteController = TextEditingController();
late FocusNode _amountFocusNode;
bool _amountFocused = false;
@override @override
void initState() { void initState() {
super.initState(); super.initState();
_amountFocusNode = FocusNode();
_amountFocusNode.addListener(() {
setState(() => _amountFocused = _amountFocusNode.hasFocus);
});
if (widget.initial != null) { if (widget.initial != null) {
_amountController.text = widget.initial!.amount.toString(); _amountController.text = widget.initial!.amount.toString();
_noteController.text = widget.initial!.note ?? ''; _noteController.text = widget.initial!.note ?? '';
@@ -40,6 +46,7 @@ class _AddTransactionScreenState extends ConsumerState<AddTransactionScreen> {
void dispose() { void dispose() {
_amountController.dispose(); _amountController.dispose();
_noteController.dispose(); _noteController.dispose();
_amountFocusNode.dispose();
super.dispose(); super.dispose();
} }
@@ -100,13 +107,46 @@ class _AddTransactionScreenState extends ConsumerState<AddTransactionScreen> {
final currencyInfo = ref.watch(currencyProvider); final currencyInfo = ref.watch(currencyProvider);
return Scaffold( return Scaffold(
backgroundColor: AppColors.background, backgroundColor: Theme.of(context).scaffoldBackgroundColor,
appBar: AppBar( appBar: AppBar(
title: Text(state.isEditing ? 'Edit Transaction' : 'Add Transaction'), title: Text(state.isEditing ? 'Edit Transaction' : 'Add Transaction'),
leading: IconButton( leading: IconButton(
icon: const Icon(Icons.close_rounded), icon: const Icon(Icons.close_rounded),
onPressed: () => context.pop(), onPressed: () => context.pop(),
), ),
actions: [
if (state.isEditing)
IconButton(
icon: const Icon(Icons.delete_outline_rounded),
color: const Color(0xFFE05C6B),
onPressed: () {
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text('Delete transaction?'),
content: const Text('This action cannot be undone.'),
actions: [
TextButton(
onPressed: () => Navigator.pop(ctx),
child: const Text('Cancel'),
),
TextButton(
onPressed: () {
ref.read(transactionsProvider.notifier).delete(widget.initial!.id);
Navigator.pop(ctx);
context.pop();
},
style: TextButton.styleFrom(
foregroundColor: const Color(0xFFE05C6B),
),
child: const Text('Delete'),
),
],
),
);
},
),
],
), ),
body: SafeArea( body: SafeArea(
child: Form( child: Form(
@@ -125,35 +165,62 @@ class _AddTransactionScreenState extends ConsumerState<AddTransactionScreen> {
// Amount // Amount
_SectionLabel('Amount'), _SectionLabel('Amount'),
const SizedBox(height: 8), const SizedBox(height: 8),
TextFormField( Container(
controller: _amountController, decoration: BoxDecoration(
keyboardType: const TextInputType.numberWithOptions(decimal: true), color: Theme.of(context).inputDecorationTheme.fillColor,
inputFormatters: [ borderRadius: BorderRadius.circular(12),
FilteringTextInputFormatter.allow(RegExp(r'^\d+\.?\d{0,2}')), border: Border.all(
], color: _amountFocused ? Theme.of(context).colorScheme.primary : Colors.transparent,
style: Theme.of(context).textTheme.headlineSmall?.copyWith( width: 1.5,
color: AppColors.textPrimary,
fontWeight: FontWeight.w600,
),
decoration: InputDecoration(
prefixText: '${currencyInfo.symbol} ',
prefixStyle: const TextStyle(
color: AppColors.textPrimary,
fontSize: 20,
fontWeight: FontWeight.w600,
), ),
hintText: '0.00',
), ),
onChanged: (v) { child: Row(
final parsed = double.tryParse(v); children: [
ref.read(addTransactionProvider(widget.initial).notifier).setAmount(parsed); Padding(
}, padding: const EdgeInsets.symmetric(horizontal: 12),
validator: (v) { child: Text(
if (v == null || v.isEmpty) return 'Enter an amount'; currencyInfo.symbol,
if (double.tryParse(v) == null) return 'Invalid amount'; style: TextStyle(
if (double.parse(v) <= 0) return 'Amount must be > 0'; fontSize: 20,
return null; fontWeight: FontWeight.w600,
}, color: Theme.of(context).colorScheme.onSurface,
),
),
),
Expanded(
child: TextFormField(
controller: _amountController,
focusNode: _amountFocusNode,
keyboardType: const TextInputType.numberWithOptions(decimal: true),
inputFormatters: [
FilteringTextInputFormatter.allow(RegExp(r'^\d+\.?\d{0,2}')),
],
style: Theme.of(context).textTheme.headlineSmall?.copyWith(
color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.w600,
),
decoration: const InputDecoration(
hintText: '0.00',
border: InputBorder.none,
enabledBorder: InputBorder.none,
focusedBorder: InputBorder.none,
filled: false,
contentPadding: EdgeInsets.symmetric(horizontal: 0, vertical: 16),
),
onChanged: (v) {
final parsed = double.tryParse(v);
ref.read(addTransactionProvider(widget.initial).notifier).setAmount(parsed);
},
validator: (v) {
if (v == null || v.isEmpty) return 'Enter an amount';
if (double.tryParse(v) == null) return 'Invalid amount';
if (double.parse(v) <= 0) return 'Amount must be > 0';
return null;
},
),
),
],
),
), ),
const SizedBox(height: 20), const SizedBox(height: 20),
@@ -177,19 +244,19 @@ class _AddTransactionScreenState extends ConsumerState<AddTransactionScreen> {
child: Container( child: Container(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 14), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 14),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Row( child: Row(
children: [ children: [
const Icon(Icons.calendar_today_rounded, Icon(Icons.calendar_today_rounded,
color: AppColors.textSecondary, size: 18), color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6), size: 18),
const SizedBox(width: 10), const SizedBox(width: 10),
Text( Text(
DateFormat('MMMM d, yyyy').format(state.date), DateFormat('MMMM d, yyyy').format(state.date),
style: Theme.of(context).textTheme.bodyMedium?.copyWith( style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
], ],
@@ -242,7 +309,7 @@ class _SectionLabel extends StatelessWidget {
return Text( return Text(
text, text,
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
letterSpacing: 0.5, letterSpacing: 0.5,
), ),
@@ -259,9 +326,9 @@ class _TypeToggle extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container( return Container(
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(14), borderRadius: BorderRadius.circular(14),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Row( child: Row(
children: [ children: [
@@ -314,12 +381,12 @@ class _TypeOption extends StatelessWidget {
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Icon(icon, color: isSelected ? color : AppColors.textSecondary, size: 18), Icon(icon, color: isSelected ? color : Theme.of(context).colorScheme.onSurface.withOpacity(0.6), size: 18),
const SizedBox(width: 6), const SizedBox(width: 6),
Text( Text(
label, label,
style: Theme.of(context).textTheme.bodyMedium?.copyWith( style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: isSelected ? color : AppColors.textSecondary, color: isSelected ? color : Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal, fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal,
), ),
), ),
@@ -356,22 +423,22 @@ class _CategoryPicker extends StatelessWidget {
duration: const Duration(milliseconds: 200), duration: const Duration(milliseconds: 200),
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10), padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
decoration: BoxDecoration( decoration: BoxDecoration(
color: isSelected ? color.withOpacity(0.2) : AppColors.surface, color: isSelected ? color.withOpacity(0.2) : Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
border: Border.all( border: Border.all(
color: isSelected ? color : AppColors.divider, color: isSelected ? color : Theme.of(context).dividerColor,
width: isSelected ? 1.5 : 1, width: isSelected ? 1.5 : 1,
), ),
), ),
child: Row( child: Row(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
Icon(icon, color: isSelected ? color : AppColors.textSecondary, size: 16), Icon(icon, color: isSelected ? color : Theme.of(context).colorScheme.onSurface.withOpacity(0.6), size: 16),
const SizedBox(width: 6), const SizedBox(width: 6),
Text( Text(
cat, cat,
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: isSelected ? color : AppColors.textSecondary, color: isSelected ? color : Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal, fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal,
), ),
), ),
+90 -122
View File
@@ -37,7 +37,7 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
final budgetExceeded = budget != null && monthExpense > budget; final budgetExceeded = budget != null && monthExpense > budget;
return Scaffold( return Scaffold(
backgroundColor: AppColors.background, backgroundColor: Theme.of(context).scaffoldBackgroundColor,
appBar: AppBar( appBar: AppBar(
title: Row( title: Row(
children: [ children: [
@@ -49,13 +49,13 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
'My Finances', 'My Finances',
style: Theme.of(context).textTheme.titleLarge?.copyWith( style: Theme.of(context).textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
Text( Text(
DateFormat('MMMM yyyy').format(DateTime.now()), DateFormat('MMMM yyyy').format(DateTime.now()),
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
], ],
@@ -75,7 +75,7 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
), ),
body: SafeArea( body: SafeArea(
child: CustomScrollView( child: CustomScrollView(
cacheExtent: 500, cacheExtent: 300,
slivers: [ slivers: [
SliverToBoxAdapter( SliverToBoxAdapter(
child: Padding( child: Padding(
@@ -103,7 +103,7 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
'Transactions', 'Transactions',
style: Theme.of(context).textTheme.titleMedium?.copyWith( style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
const SizedBox(height: 12), const SizedBox(height: 12),
@@ -119,15 +119,13 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
else else
SliverPadding( SliverPadding(
padding: const EdgeInsets.fromLTRB(20, 0, 20, 100), padding: const EdgeInsets.fromLTRB(20, 0, 20, 100),
sliver: SliverList( sliver: SliverList.builder(
delegate: SliverChildBuilderDelegate( itemCount: recent.length,
(context, i) => Padding( itemBuilder: (context, i) => Padding(
padding: const EdgeInsets.only(bottom: 10), padding: const EdgeInsets.only(bottom: 10),
child: _TransactionTile( child: RepaintBoundary(
transaction: recent[i], child: _TransactionTile(transaction: recent[i]),
),
), ),
childCount: recent.length,
), ),
), ),
), ),
@@ -149,11 +147,11 @@ class _SearchBar extends StatelessWidget {
controller: controller, controller: controller,
decoration: InputDecoration( decoration: InputDecoration(
hintText: 'Search transactions...', hintText: 'Search transactions...',
prefixIcon: const Icon(Icons.search_rounded, color: AppColors.textSecondary), prefixIcon: Icon(Icons.search_rounded, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6)),
suffixIcon: controller.text.isNotEmpty suffixIcon: controller.text.isNotEmpty
? IconButton( ? IconButton(
icon: const Icon(Icons.clear_rounded, size: 20), icon: const Icon(Icons.clear_rounded, size: 20),
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
onPressed: () { onPressed: () {
controller.clear(); controller.clear();
ref.read(searchQueryProvider.notifier).state = ''; ref.read(searchQueryProvider.notifier).state = '';
@@ -221,17 +219,17 @@ class _FilterChip extends StatelessWidget {
duration: const Duration(milliseconds: 200), duration: const Duration(milliseconds: 200),
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 8), padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 8),
decoration: BoxDecoration( decoration: BoxDecoration(
color: isSelected ? chipColor.withOpacity(0.2) : AppColors.surface, color: isSelected ? chipColor.withOpacity(0.2) : Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
border: Border.all( border: Border.all(
color: isSelected ? chipColor : AppColors.divider, color: isSelected ? chipColor : Theme.of(context).dividerColor,
width: isSelected ? 1.5 : 1, width: isSelected ? 1.5 : 1,
), ),
), ),
child: Text( child: Text(
label, label,
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: isSelected ? chipColor : AppColors.textSecondary, color: isSelected ? chipColor : Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal, fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal,
), ),
), ),
@@ -258,9 +256,9 @@ class _BudgetProgress extends StatelessWidget {
return Container( return Container(
padding: const EdgeInsets.all(16), padding: const EdgeInsets.all(16),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@@ -271,7 +269,7 @@ class _BudgetProgress extends StatelessWidget {
Text( Text(
'Monthly Budget', 'Monthly Budget',
style: Theme.of(context).textTheme.bodyMedium?.copyWith( style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
Text( Text(
@@ -288,7 +286,7 @@ class _BudgetProgress extends StatelessWidget {
borderRadius: BorderRadius.circular(8), borderRadius: BorderRadius.circular(8),
child: LinearProgressIndicator( child: LinearProgressIndicator(
value: ratio.clamp(0.0, 1.0), value: ratio.clamp(0.0, 1.0),
backgroundColor: AppColors.divider, backgroundColor: Theme.of(context).dividerColor,
valueColor: AlwaysStoppedAnimation<Color>(color), valueColor: AlwaysStoppedAnimation<Color>(color),
minHeight: 8, minHeight: 8,
), ),
@@ -300,13 +298,13 @@ class _BudgetProgress extends StatelessWidget {
Text( Text(
'Spent: ${currencyInfo.symbol}${spent.toStringAsFixed(2)}', 'Spent: ${currencyInfo.symbol}${spent.toStringAsFixed(2)}',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
Text( Text(
'Limit: ${currencyInfo.symbol}${budget.toStringAsFixed(2)}', 'Limit: ${currencyInfo.symbol}${budget.toStringAsFixed(2)}',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
], ],
@@ -363,8 +361,11 @@ class _BalanceCard extends StatelessWidget {
width: double.infinity, width: double.infinity,
padding: const EdgeInsets.all(24), padding: const EdgeInsets.all(24),
decoration: BoxDecoration( decoration: BoxDecoration(
gradient: const LinearGradient( gradient: LinearGradient(
colors: [Color(0xFF7C6DED), Color(0xFF5A4FBF)], colors: [
Theme.of(context).colorScheme.primary,
Theme.of(context).colorScheme.primary.withOpacity(0.7),
],
begin: Alignment.topLeft, begin: Alignment.topLeft,
end: Alignment.bottomRight, end: Alignment.bottomRight,
), ),
@@ -383,14 +384,14 @@ class _BalanceCard extends StatelessWidget {
Text( Text(
'Total Balance', 'Total Balance',
style: Theme.of(context).textTheme.bodyMedium?.copyWith( style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: Colors.white70, color: Theme.of(context).colorScheme.onPrimary.withOpacity(0.7),
), ),
), ),
const SizedBox(height: 8), const SizedBox(height: 8),
Text( Text(
'${currencyInfo.symbol}${balance.toStringAsFixed(2)}', '${currencyInfo.symbol}${balance.toStringAsFixed(2)}',
style: Theme.of(context).textTheme.headlineMedium?.copyWith( style: Theme.of(context).textTheme.headlineMedium?.copyWith(
color: Colors.white, color: Theme.of(context).colorScheme.onPrimary,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
letterSpacing: -0.5, letterSpacing: -0.5,
), ),
@@ -399,7 +400,7 @@ class _BalanceCard extends StatelessWidget {
Text( Text(
'Converted to ${currencyInfo.symbol}${currencyInfo.code}', 'Converted to ${currencyInfo.symbol}${currencyInfo.code}',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: Colors.white60, color: Theme.of(context).colorScheme.onPrimary.withOpacity(0.6),
fontSize: 11, fontSize: 11,
), ),
), ),
@@ -440,9 +441,9 @@ class _SummaryCard extends StatelessWidget {
return Container( return Container(
padding: const EdgeInsets.all(16), padding: const EdgeInsets.all(16),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Row( child: Row(
children: [ children: [
@@ -459,7 +460,7 @@ class _SummaryCard extends StatelessWidget {
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text(label, style: Theme.of(context).textTheme.bodySmall?.copyWith(color: AppColors.textSecondary)), Text(label, style: Theme.of(context).textTheme.bodySmall?.copyWith(color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6))),
const SizedBox(height: 2), const SizedBox(height: 2),
Text( Text(
'${currencyInfo.symbol}${amount.toStringAsFixed(2)}', '${currencyInfo.symbol}${amount.toStringAsFixed(2)}',
@@ -478,107 +479,74 @@ class _SummaryCard extends StatelessWidget {
} }
} }
class _TransactionTile extends ConsumerWidget { class _TransactionTile extends StatelessWidget {
final Transaction transaction; final Transaction transaction;
const _TransactionTile({required this.transaction}); const _TransactionTile({required this.transaction});
void _showUndoSnackBar(BuildContext context, WidgetRef ref, Transaction tx) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: const Text('Transaction deleted'),
duration: const Duration(seconds: 5),
action: SnackBarAction(
label: 'Undo',
onPressed: () {
ref.read(transactionsProvider.notifier).restore(tx);
},
),
backgroundColor: AppColors.surface,
),
);
}
@override @override
Widget build(BuildContext context, WidgetRef ref) { Widget build(BuildContext context) {
final isIncome = transaction.type == TransactionType.income; final isIncome = transaction.type == TransactionType.income;
final color = isIncome ? AppColors.income : AppColors.expense; final color = isIncome ? AppColors.income : AppColors.expense;
final catColor = AppCategories.colors[transaction.category] ?? AppColors.accent; final catColor = AppCategories.colors[transaction.category] ?? AppColors.accent;
final catIcon = AppCategories.icons[transaction.category] ?? Icons.category_rounded; final catIcon = AppCategories.icons[transaction.category] ?? Icons.category_rounded;
return Dismissible( return GestureDetector(
key: Key(transaction.id), onTap: () => context.push('/add', extra: transaction),
direction: DismissDirection.endToStart, child: Container(
background: Container( padding: const EdgeInsets.all(14),
alignment: Alignment.centerRight,
padding: const EdgeInsets.only(right: 20),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.expense.withOpacity(0.15), color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: const Icon(Icons.delete_outline_rounded, color: AppColors.expense), child: Row(
), children: [
onDismissed: (_) { Container(
ref.read(transactionsProvider.notifier).delete(transaction.id); padding: const EdgeInsets.all(10),
_showUndoSnackBar(context, ref, transaction); decoration: BoxDecoration(
}, color: catColor.withOpacity(0.15),
child: GestureDetector( borderRadius: BorderRadius.circular(12),
onTap: () => context.push('/add', extra: transaction),
child: Container(
padding: const EdgeInsets.all(14),
decoration: BoxDecoration(
color: AppColors.surface,
borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.divider),
),
child: Row(
children: [
Container(
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
color: catColor.withOpacity(0.15),
borderRadius: BorderRadius.circular(12),
),
child: Icon(catIcon, color: catColor, size: 20),
), ),
const SizedBox(width: 12), child: Icon(catIcon, color: catColor, size: 20),
Expanded( ),
child: Column( const SizedBox(width: 12),
crossAxisAlignment: CrossAxisAlignment.start, Expanded(
children: [ child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
transaction.category,
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
fontWeight: FontWeight.w600,
color: Theme.of(context).colorScheme.onSurface,
),
),
if (transaction.note != null && transaction.note!.isNotEmpty)
Text( Text(
transaction.category, transaction.note!,
style: Theme.of(context).textTheme.bodyMedium?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
fontWeight: FontWeight.w600, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
color: AppColors.textPrimary, ),
overflow: TextOverflow.ellipsis,
)
else
Text(
DateFormat('MMM d, yyyy').format(transaction.date),
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
if (transaction.note != null && transaction.note!.isNotEmpty) ],
Text(
transaction.note!,
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary,
),
overflow: TextOverflow.ellipsis,
)
else
Text(
DateFormat('MMM d, yyyy').format(transaction.date),
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary,
),
),
],
),
), ),
Text( ),
'${isIncome ? '+' : '-'}${transaction.currency}${transaction.amount.toStringAsFixed(2)}', Text(
style: Theme.of(context).textTheme.bodyMedium?.copyWith( '${isIncome ? '+' : '-'}${transaction.currency}${transaction.amount.toStringAsFixed(2)}',
color: color, style: Theme.of(context).textTheme.bodyMedium?.copyWith(
fontWeight: FontWeight.w700, color: color,
), fontWeight: FontWeight.w700,
), ),
], ),
), ],
), ),
), ),
); );
@@ -596,21 +564,21 @@ class _EmptyState extends StatelessWidget {
children: [ children: [
Container( Container(
padding: const EdgeInsets.all(24), padding: const EdgeInsets.all(24),
decoration: const BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
shape: BoxShape.circle, shape: BoxShape.circle,
), ),
child: const Icon( child: Icon(
Icons.receipt_long_rounded, Icons.receipt_long_rounded,
size: 48, size: 48,
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
const SizedBox(height: 16), const SizedBox(height: 16),
Text( Text(
'No transactions found', 'No transactions found',
style: Theme.of(context).textTheme.titleMedium?.copyWith( style: Theme.of(context).textTheme.titleMedium?.copyWith(
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
), ),
), ),
@@ -618,7 +586,7 @@ class _EmptyState extends StatelessWidget {
Text( Text(
'Tap + to add your first transaction', 'Tap + to add your first transaction',
style: Theme.of(context).textTheme.bodyMedium?.copyWith( style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
], ],
+6
View File
@@ -21,6 +21,12 @@ class BudgetNotifier extends StateNotifier<double?> {
await _storage.saveBudget(budget); await _storage.saveBudget(budget);
state = budget; state = budget;
} }
void onCurrencyChanged(String oldCode, String newCode, ExchangeRateService rates) {
if (state == null) return;
final converted = rates.convert(state!, oldCode, newCode);
setBudget(converted);
}
} }
// Currency info: symbol and code // Currency info: symbol and code
+24 -21
View File
@@ -59,7 +59,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
_currencyFmt = NumberFormat.currency(symbol: currencyInfo.symbol, decimalDigits: 2); _currencyFmt = NumberFormat.currency(symbol: currencyInfo.symbol, decimalDigits: 2);
return Scaffold( return Scaffold(
backgroundColor: AppColors.background, backgroundColor: Theme.of(context).scaffoldBackgroundColor,
appBar: AppBar( appBar: AppBar(
title: Column( title: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@@ -68,13 +68,13 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
'Settings', 'Settings',
style: Theme.of(context).textTheme.titleLarge?.copyWith( style: Theme.of(context).textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
Text( Text(
'Manage your preferences', 'Manage your preferences',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
], ],
@@ -98,9 +98,9 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
Container( Container(
padding: const EdgeInsets.all(20), padding: const EdgeInsets.all(20),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Row( child: Row(
children: [ children: [
@@ -125,13 +125,13 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
'Dark Mode', 'Dark Mode',
style: Theme.of(context).textTheme.titleMedium?.copyWith( style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
Text( Text(
isDarkMode ? 'Enabled' : 'Disabled', isDarkMode ? 'Enabled' : 'Disabled',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
], ],
@@ -153,9 +153,9 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
Container( Container(
padding: const EdgeInsets.all(20), padding: const EdgeInsets.all(20),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@@ -180,7 +180,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
'Currency', 'Currency',
style: Theme.of(context).textTheme.titleMedium?.copyWith( style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
), ),
@@ -196,6 +196,9 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
padding: const EdgeInsets.only(right: 8), padding: const EdgeInsets.only(right: 8),
child: GestureDetector( child: GestureDetector(
onTap: () { onTap: () {
final oldCode = ref.read(currencyProvider).code;
final rates = ref.read(exchangeRateServiceProvider);
ref.read(budgetProvider.notifier).onCurrencyChanged(oldCode, code, rates);
ref.read(currencyProvider.notifier).setCurrency(code); ref.read(currencyProvider.notifier).setCurrency(code);
}, },
child: Container( child: Container(
@@ -203,10 +206,10 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
decoration: BoxDecoration( decoration: BoxDecoration(
color: isSelected color: isSelected
? AppColors.accent.withOpacity(0.2) ? AppColors.accent.withOpacity(0.2)
: AppColors.background, : Theme.of(context).scaffoldBackgroundColor,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
border: Border.all( border: Border.all(
color: isSelected ? AppColors.accent : AppColors.divider, color: isSelected ? AppColors.accent : Theme.of(context).dividerColor,
width: isSelected ? 1.5 : 1, width: isSelected ? 1.5 : 1,
), ),
), ),
@@ -215,7 +218,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
Text( Text(
info.symbol, info.symbol,
style: Theme.of(context).textTheme.titleLarge?.copyWith( style: Theme.of(context).textTheme.titleLarge?.copyWith(
color: isSelected ? AppColors.accent : AppColors.textSecondary, color: isSelected ? AppColors.accent : Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: isSelected ? FontWeight.w700 : FontWeight.normal, fontWeight: isSelected ? FontWeight.w700 : FontWeight.normal,
), ),
), ),
@@ -223,7 +226,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
Text( Text(
code, code,
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: isSelected ? AppColors.accent : AppColors.textSecondary, color: isSelected ? AppColors.accent : Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal, fontWeight: isSelected ? FontWeight.w600 : FontWeight.normal,
), ),
), ),
@@ -244,9 +247,9 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
Container( Container(
padding: const EdgeInsets.all(20), padding: const EdgeInsets.all(20),
decoration: BoxDecoration( decoration: BoxDecoration(
color: AppColors.surface, color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.divider), border: Border.all(color: Theme.of(context).dividerColor),
), ),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@@ -271,14 +274,14 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
'Monthly Budget', 'Monthly Budget',
style: Theme.of(context).textTheme.titleMedium?.copyWith( style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
), ),
if (!_isEditing) if (!_isEditing)
IconButton( IconButton(
icon: const Icon(Icons.edit_rounded, size: 20), icon: const Icon(Icons.edit_rounded, size: 20),
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
onPressed: () => setState(() => _isEditing = true), onPressed: () => setState(() => _isEditing = true),
), ),
], ],
@@ -334,7 +337,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
? _currencyFmt.format(budget) ? _currencyFmt.format(budget)
: 'Not set', : 'Not set',
style: Theme.of(context).textTheme.headlineSmall?.copyWith( style: Theme.of(context).textTheme.headlineSmall?.copyWith(
color: budget != null ? AppColors.accent : AppColors.textSecondary, color: budget != null ? AppColors.accent : Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
), ),
), ),
@@ -344,7 +347,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
? 'Your monthly spending limit' ? 'Your monthly spending limit'
: 'Set a monthly spending limit to track your budget', : 'Set a monthly spending limit to track your budget',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textSecondary, color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
), ),
), ),
], ],
@@ -368,7 +371,7 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
child: Text( child: Text(
'Budget tracking shows on the Dashboard with a progress bar and warning when exceeded.', 'Budget tracking shows on the Dashboard with a progress bar and warning when exceeded.',
style: Theme.of(context).textTheme.bodySmall?.copyWith( style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: AppColors.textPrimary, color: Theme.of(context).colorScheme.onSurface,
), ),
), ),
), ),