diff --git a/Frontend/patient_manager/lib/pages/patientView.dart b/Frontend/patient_manager/lib/pages/patientView.dart index 8c294575..74c650fa 100644 --- a/Frontend/patient_manager/lib/pages/patientView.dart +++ b/Frontend/patient_manager/lib/pages/patientView.dart @@ -95,7 +95,7 @@ class _PatientViewState extends State { // loadImage(); // var logo = MzanziInnovationHub.of(context)!.theme.logoImage(); return Scaffold( - appBar: const MIHAppBar(barTitle: "Patient View"), + appBar: const MIHAppBar(barTitle: "Patient Profile"), drawer: showDrawer(), body: SingleChildScrollView( child: Padding( @@ -135,7 +135,7 @@ class _PatientViewState extends State { }); }, icon: const Icon( - Icons.edit_document, + Icons.file_copy, size: 35, ), ), @@ -144,7 +144,7 @@ class _PatientViewState extends State { const SizedBox( height: 10.0, ), - showSelection(_selectedIndex) + showSelection(_selectedIndex), ], ), ),