Welcome Screen for both Login and Mpin Page

This commit is contained in:
Nilanjan Chakrabarti
2025-07-18 12:48:52 +05:30
parent 23d742ace9
commit 20791432dd
3 changed files with 127 additions and 7 deletions

View File

@@ -43,18 +43,18 @@ class _WelcomeScreenState extends State<WelcomeScreen> {
children: [
Text(
AppLocalizations.of(context).kconnect,
style: TextStyle(
style: const TextStyle(
fontSize: 36,
fontWeight: FontWeight.bold,
color: Colors.white,
letterSpacing: 1.5,
),
),
SizedBox(height: 12),
const SizedBox(height: 12),
Text(
AppLocalizations.of(context).kccBankFull,
textAlign: TextAlign.center,
style: TextStyle(
style: const TextStyle(
fontSize: 18,
color: Colors.white,
letterSpacing: 1.2,

View File

@@ -435,7 +435,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
MaterialPageRoute(
builder: (context) =>
const FundTransferBeneficiaryScreen()));
}, disable: false),
}, disable: true),
_buildQuickLink(Symbols.server_person,
AppLocalizations.of(context).accountInfo, () {
Navigator.push(
@@ -457,7 +457,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
}),
_buildQuickLink(Symbols.checkbook,
AppLocalizations.of(context).handleCheque, () {},
disable: false),
disable: true),
_buildQuickLink(Icons.group,
AppLocalizations.of(context).manageBeneficiary, () {
Navigator.push(
@@ -465,7 +465,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
MaterialPageRoute(
builder: (context) =>
const ManageBeneficiariesScreen()));
}, disable: false),
}, disable: true),
_buildQuickLink(Symbols.support_agent,
AppLocalizations.of(context).contactUs, () {
Navigator.push(