PDF Edited

This commit is contained in:
2025-12-03 18:05:34 +05:30
parent 5d307607fd
commit c7111d518a
2 changed files with 583 additions and 209 deletions

View File

@@ -417,13 +417,25 @@ class _DashboardScreenState extends State<DashboardScreen>
child: Scaffold(
backgroundColor: theme.scaffoldBackgroundColor,
appBar: AppBar(
backgroundColor: theme.scaffoldBackgroundColor,
leading: const Padding(
padding: EdgeInsets.only(left: 10.0),
child: CircleAvatar(
radius: 15,
backgroundImage: AssetImage('assets/images/logo.png'),
),
backgroundColor: const Color(0xFF01A04C),
leading: Padding(
padding: const EdgeInsets.only(left: 10.0),
//
child: CircleAvatar(
radius: 20,
backgroundColor: Colors.white,
child: Padding(
padding: const EdgeInsets.all(2.0),
child: ClipOval(
child: Image.asset(
'assets/images/logo.png',
width: 40,
height: 40,
fit: BoxFit.cover,
),
),
),
),
),
title: Text(
AppLocalizations.of(context).kccBankFull.replaceAll('-', '\u2011'),
@@ -431,7 +443,7 @@ class _DashboardScreenState extends State<DashboardScreen>
softWrap: true, // Explicitly allow wrapping
maxLines: 2, // Allow text to wrap to a maximum of 2 lines
style: TextStyle(
color: theme.colorScheme.primary,
color: theme.colorScheme.onPrimary,
fontWeight: FontWeight.w700,
fontSize: 20,
),