Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2c29a5f
feat: add monthly overview widgets for statistics screen
abdo-essam Feb 6, 2026
9ab3aa9
feat: set statistics screen as initial route and refactor Monthly Ove…
abdo-essam Feb 6, 2026
a84c02d
chore: ignore generated localization files and CMakeLists.txt
abdo-essam Feb 6, 2026
14baec3
refactor: rename SummaryCard to SummaryItem and enhance UI
abdo-essam Feb 6, 2026
d9cf9da
refactor: replace `_AnimatedProgressBar` with `_GradientProgressBar`
abdo-essam Feb 6, 2026
1caf56c
refactor: update ScaleLabels widget styling
abdo-essam Feb 6, 2026
550f6c6
feat: refactor MonthlyOverview and SavingsBanner UI
abdo-essam Feb 6, 2026
35370a8
refactor: simplify border radius in MonthlyOverview
abdo-essam Feb 6, 2026
e381e7f
refactor: update monthly overview summary item UI
abdo-essam Feb 6, 2026
fabe4e1
refactor: adjust spacing in MonthlyOverview widget
abdo-essam Feb 6, 2026
1ba86ea
refactor: use theme colors in ProgressBarSection
abdo-essam Feb 6, 2026
230b706
feat: update scale label text color for monthly overview
abdo-essam Feb 6, 2026
ff643f6
refactor: modularize Statistics screen and introduce dedicated state …
abdo-essam Feb 11, 2026
5c1b85d
Merge remote-tracking branch 'origin/dev' into feature/statistics-mon…
abdo-essam Feb 11, 2026
777ca93
Merge remote-tracking branch 'origin/feature/statistics-monthly-overv…
abdo-essam Feb 11, 2026
6edf027
refactor(core): update DI and navigation routes
abdo-essam Feb 11, 2026
3b1666b
feat: add fake statistics repository for UI development
abdo-essam Feb 11, 2026
97cc3f0
Merge remote-tracking branch 'origin/feature/statistics-monthly-overv…
abdo-essam Feb 11, 2026
2295f68
Merge remote-tracking branch 'origin/dev' into feature/statistics-mon…
abdo-essam Feb 15, 2026
5d9a53d
Merge remote-tracking branch 'origin/dev' into feature/statistics-mon…
abdo-essam Feb 15, 2026
c3516c9
feat: implement transaction deletion and feedback
abdo-essam Feb 15, 2026
5d21dd5
chore: integrate CocoaPods into the iOS project
abdo-essam Feb 15, 2026
29f2ce0
chore: integrate CocoaPods into the iOS project
abdo-essam Feb 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 31 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# ==============================
# Miscellaneous
# ==============================
*.class
*.log
*.pyc
Expand All @@ -15,39 +17,48 @@ migrate_working_dir/
*.secret
*.properties
*.lock
# IntelliJ related

# ==============================
# IDE
# ==============================
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Uncomment if you DON'T want VS Code settings in git
# .vscode/

# Flutter/Dart/Pub related
# ==============================
# Flutter / Dart / Pub
# ==============================
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
/coverage/
pubspec.lock
build/
coverage/

# Symbolication related
app.*.symbols
# ⚠️ If this is a PACKAGE keep this ignored
# ⚠️ If this is an APP you may want to track it
pubspec.lock

# Obfuscation related
app.*.map.json
# Generated files
*.g.dart
*.freezed.dart
*.gen.dart

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
# ==============================
# iOS
# ==============================
ios/Flutter/Release.xcconfig
ios/Podfile

# Flutter generated localization files
**/l10n/app_localizations.dart
**/l10n/app_localizations_*.dart
# ===========================
/lib/presentation/navigation/routes.g.dart
/lib/core/l10n/app_localizations.dart
/lib/core/l10n/app_localizations_ar.dart
/lib/core/l10n/app_localizations_en.dart
/lib/utils/CMakeLists.txt
17 changes: 17 additions & 0 deletions assets/icons/ic_money_remove.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions assets/icons/ic_wallet_add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions ios/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ Runner/GeneratedPluginRegistrant.*
!default.mode2v3
!default.pbxuser
!default.perspectivev3
/Flutter/Debug.xcconfig
/Flutter/Release.xcconfig
1 change: 1 addition & 0 deletions ios/Flutter/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
1 change: 0 additions & 1 deletion ios/Flutter/Release.xcconfig

This file was deleted.

Loading