APK Build Pre_versioning

This commit is contained in:
2025-10-14 16:18:23 +05:30
parent d36cad31c1
commit 4d19bf6146
3 changed files with 23 additions and 6 deletions

View File

@@ -22,6 +22,12 @@ class PreferenceScreen extends StatelessWidget {
builder: (context, state) {
return ListView(
children: [
//Set Prefered Username
// ListTile(
// leading: const Icon(Icons.person),
// title: const Text("Set Prefered Username"),
// onTap: () {
// }),
// Language Selection
ListTile(
leading: const Icon(Icons.language),

View File

@@ -58,6 +58,18 @@ class _ProfileScreenState extends State<ProfileScreen> {
);
},
),
// ListTile(
// leading: const Icon(Icons.password),
// title: const Text("Manage TPIN"),
// onTap: () async {
// },
// ),
// ListTile(
// leading: const Icon(Icons.password),
// title: const Text("Change Login MPIN"),
// onTap: () async {
// },
// ),
ListTile(
leading: const Icon(Icons.logout),
title: Text(AppLocalizations.of(context).logout),
@@ -72,7 +84,6 @@ class _ProfileScreenState extends State<ProfileScreen> {
}
},
),
// You can add more profile options here later
],
),
);

View File

@@ -47,7 +47,7 @@ Widget build(BuildContext context) {
MaterialPageRoute(builder: (context) => const DailyLimitScreen()),
);
},
disabled: false,
disabled: true,
),
const Divider(height: 1),
ServiceManagementTile(
@@ -58,7 +58,7 @@ Widget build(BuildContext context) {
MaterialPageRoute(builder: (context) => const QuickLinksScreen()),
);
},
disabled: false,
disabled: true,
),
const Divider(height: 1),
ServiceManagementTile(
@@ -69,7 +69,7 @@ Widget build(BuildContext context) {
MaterialPageRoute(builder: (context) => const FaqsScreen()),
);
},
disabled: false,
disabled: true,
),
const Divider(height: 1),
ServiceManagementTile(
@@ -81,7 +81,7 @@ Widget build(BuildContext context) {
MaterialPageRoute(
builder: (context) => const BranchLocatorScreen()));
},
disabled: false,
disabled: true,
),
const Divider(height: 1),
],