From 5b9c2529838a8b85721f0db2827fb5461926c7ca Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Thu, 29 May 2025 14:57:41 +0200 Subject: [PATCH] add title to Mzansi Profile --- .../mzansi_profile/personal_profile/mzansi_profile.dart | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart b/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart index 40e9cc64..f721df6e 100644 --- a/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart +++ b/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart @@ -26,6 +26,7 @@ class _MzansiProfileState extends State { appActionButton: getAction(), appTools: getTools(), appBody: getToolBody(), + appToolTitles: getToolTitle(), selectedbodyIndex: _selcetedIndex, onIndexChange: (newValue) { setState(() { @@ -74,4 +75,12 @@ class _MzansiProfileState extends State { )); return toolBodies; } + + List getToolTitle() { + List toolTitles = [ + "Profile", + "Settings", + ]; + return toolTitles; + } }