New KCCB logo
This commit is contained in:
@@ -95,11 +95,13 @@ class _ATMLocatorScreenState extends State<ATMLocatorScreen> {
|
||||
IgnorePointer(
|
||||
child: Center(
|
||||
child: Opacity(
|
||||
opacity: 0.1, // Low opacity for background logo
|
||||
child: Image.asset(
|
||||
'assets/images/logo.png', // Background logo image
|
||||
width: 200, // Adjust size as needed
|
||||
height: 200, // Adjust size as needed
|
||||
opacity: 0.07, // Reduced opacity
|
||||
child: ClipOval(
|
||||
child: Image.asset(
|
||||
'assets/images/logo.png', // Background logo image
|
||||
width: 200, // Adjust size as needed
|
||||
height: 200, // Adjust size as needed
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -119,9 +121,7 @@ class _ATMLocatorScreenState extends State<ATMLocatorScreen> {
|
||||
title: Text(atm.name, // Display the ATM's name
|
||||
style: const TextStyle(fontWeight: FontWeight.bold)),
|
||||
onTap: () {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text("Selected ${atm.name}")), // Show snackbar on tap
|
||||
);
|
||||
// No action on tap as per user request
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user