color Changes minor

This commit is contained in:
2025-08-25 18:10:52 +05:30
parent bf35ec61d5
commit 4b28a113d4
4 changed files with 48 additions and 45 deletions

View File

@@ -50,7 +50,7 @@ class AccountCard extends StatelessWidget {
Text(
account.accountNumber,
style: TextStyle(
color: const DialogThemeData().backgroundColor, fontSize: 16),
color:Theme.of(context).scaffoldBackgroundColor, fontSize: 16),
),
const SizedBox(height: 30),
Text(
@@ -65,7 +65,7 @@ class AccountCard extends StatelessWidget {
Text(
AppLocalizations.of(context).availableBalance,
style: TextStyle(
color: const DialogThemeData().backgroundColor, fontSize: 16),
color: Theme.of(context).scaffoldBackgroundColor, fontSize: 16),
),
],
),