Branch Locator static Screen

This commit is contained in:
2025-08-20 12:46:28 +05:30
parent 7527db3d2f
commit fc76528206
10 changed files with 139 additions and 60 deletions

View File

@@ -64,7 +64,15 @@ Widget getBankLogo(String? bankName) {
width: 40,
height: 40,
);
} else {
}
if (bankName != null && bankName.toLowerCase().contains('bank of india')) {
return Image.asset(
'assets/images/boi_logo.png',
width: 40,
height: 40,
);
}
else {
return const Icon(
Icons.account_balance,
size: 40,