diff --git a/lib/features/profile/preferences/preference_screen.dart b/lib/features/profile/preferences/preference_screen.dart index e30d020..c0c7926 100644 --- a/lib/features/profile/preferences/preference_screen.dart +++ b/lib/features/profile/preferences/preference_screen.dart @@ -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), diff --git a/lib/features/profile/profile_screen.dart b/lib/features/profile/profile_screen.dart index a50238b..2ad29a6 100644 --- a/lib/features/profile/profile_screen.dart +++ b/lib/features/profile/profile_screen.dart @@ -58,7 +58,19 @@ class _ProfileScreenState extends State { ); }, ), - 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), title: Text(AppLocalizations.of(context).logout), onTap: () async { @@ -72,7 +84,6 @@ class _ProfileScreenState extends State { } }, ), - // You can add more profile options here later ], ), ); diff --git a/lib/features/service/screens/service_screen.dart b/lib/features/service/screens/service_screen.dart index f6283a3..3e8adbf 100644 --- a/lib/features/service/screens/service_screen.dart +++ b/lib/features/service/screens/service_screen.dart @@ -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), ],