APK Build Pre_versioning
This commit is contained in:
@@ -22,6 +22,12 @@ class PreferenceScreen extends StatelessWidget {
|
|||||||
builder: (context, state) {
|
builder: (context, state) {
|
||||||
return ListView(
|
return ListView(
|
||||||
children: [
|
children: [
|
||||||
|
//Set Prefered Username
|
||||||
|
// ListTile(
|
||||||
|
// leading: const Icon(Icons.person),
|
||||||
|
// title: const Text("Set Prefered Username"),
|
||||||
|
// onTap: () {
|
||||||
|
// }),
|
||||||
// Language Selection
|
// Language Selection
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: const Icon(Icons.language),
|
leading: const Icon(Icons.language),
|
||||||
|
|||||||
@@ -58,7 +58,19 @@ class _ProfileScreenState extends State<ProfileScreen> {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
ListTile(
|
// 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),
|
leading: const Icon(Icons.logout),
|
||||||
title: Text(AppLocalizations.of(context).logout),
|
title: Text(AppLocalizations.of(context).logout),
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
@@ -72,7 +84,6 @@ class _ProfileScreenState extends State<ProfileScreen> {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
// You can add more profile options here later
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ Widget build(BuildContext context) {
|
|||||||
MaterialPageRoute(builder: (context) => const DailyLimitScreen()),
|
MaterialPageRoute(builder: (context) => const DailyLimitScreen()),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
disabled: false,
|
disabled: true,
|
||||||
),
|
),
|
||||||
const Divider(height: 1),
|
const Divider(height: 1),
|
||||||
ServiceManagementTile(
|
ServiceManagementTile(
|
||||||
@@ -58,7 +58,7 @@ Widget build(BuildContext context) {
|
|||||||
MaterialPageRoute(builder: (context) => const QuickLinksScreen()),
|
MaterialPageRoute(builder: (context) => const QuickLinksScreen()),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
disabled: false,
|
disabled: true,
|
||||||
),
|
),
|
||||||
const Divider(height: 1),
|
const Divider(height: 1),
|
||||||
ServiceManagementTile(
|
ServiceManagementTile(
|
||||||
@@ -69,7 +69,7 @@ Widget build(BuildContext context) {
|
|||||||
MaterialPageRoute(builder: (context) => const FaqsScreen()),
|
MaterialPageRoute(builder: (context) => const FaqsScreen()),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
disabled: false,
|
disabled: true,
|
||||||
),
|
),
|
||||||
const Divider(height: 1),
|
const Divider(height: 1),
|
||||||
ServiceManagementTile(
|
ServiceManagementTile(
|
||||||
@@ -81,7 +81,7 @@ Widget build(BuildContext context) {
|
|||||||
MaterialPageRoute(
|
MaterialPageRoute(
|
||||||
builder: (context) => const BranchLocatorScreen()));
|
builder: (context) => const BranchLocatorScreen()));
|
||||||
},
|
},
|
||||||
disabled: false,
|
disabled: true,
|
||||||
),
|
),
|
||||||
const Divider(height: 1),
|
const Divider(height: 1),
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user