@marcos_feitoza/personal-finance-frontend-feature-dashboard 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.1](https://github.com/MarcosOps/personal-finance-frontend-feature-dashboard/compare/v1.0.0...v1.0.1) (2025-11-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix cred card logic of message ([277b13b](https://github.com/MarcosOps/personal-finance-frontend-feature-dashboard/commit/277b13b013c5596958fd3aea6ede9b375fcf74cc))
7
+
1
8
  # 1.0.0 (2025-11-22)
2
9
 
3
10
 
@@ -565,12 +565,12 @@ class _HomeScreenState extends State<HomeScreen> {
565
565
  String differenceText = '${_formatCurrency(difference)}';
566
566
 
567
567
  if (difference > 0.01) {
568
- differenceLabel = 'Missing Expenses:';
569
- differenceColor = Colors.red;
570
- differenceText = '+${_formatCurrency(difference)}';
571
- } else if (difference < -0.01) {
572
568
  differenceLabel = 'Missing Refund:';
573
569
  differenceColor = Colors.green;
570
+ differenceText = '+${_formatCurrency(difference)}';
571
+ } else if (difference < -0.01) {
572
+ differenceLabel = 'Missing Expenses:';
573
+ differenceColor = Colors.red;
574
574
  }
575
575
 
576
576
  return AppFormCard(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcos_feitoza/personal-finance-frontend-feature-dashboard",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },