From 50452aa703ee2cbc673ad64d874eb3f3ed237ee4 Mon Sep 17 00:00:00 2001 From: yaso Date: Thu, 7 Nov 2024 09:49:04 +0200 Subject: [PATCH] remove useless comments --- .../patient_profile/patient_view.dart | 38 ++----------------- 1 file changed, 3 insertions(+), 35 deletions(-) diff --git a/Frontend/patient_manager/lib/mih_packages/patient_profile/patient_view.dart b/Frontend/patient_manager/lib/mih_packages/patient_profile/patient_view.dart index 444e8c80..dd4a3d19 100644 --- a/Frontend/patient_manager/lib/mih_packages/patient_profile/patient_view.dart +++ b/Frontend/patient_manager/lib/mih_packages/patient_profile/patient_view.dart @@ -132,6 +132,7 @@ class _PatientViewState extends State { return MIHHeader( headerAlignment: MainAxisAlignment.end, headerItems: [ + //============ Patient Details ================ Visibility( visible: _selectedIndex != 0, child: IconButton( @@ -160,6 +161,7 @@ class _PatientViewState extends State { ), ), ), + //============ Patient Notes ================ Visibility( visible: _selectedIndex != 1, child: IconButton( @@ -188,6 +190,7 @@ class _PatientViewState extends State { ), ), ), + //============ Patient Files ================ Visibility( visible: _selectedIndex != 2, child: IconButton( @@ -217,41 +220,6 @@ class _PatientViewState extends State { ), ), ], - // headerItems: [ - // IconButton( - // onPressed: () { - // setState(() { - // _selectedIndex = 0; - // }); - // }, - // icon: const Icon( - // Icons.perm_identity, - // size: 35, - // ), - // ), - // IconButton( - // onPressed: () { - // setState(() { - // _selectedIndex = 1; - // }); - // }, - // icon: const Icon( - // Icons.article_outlined, - // size: 35, - // ), - // ), - // IconButton( - // onPressed: () { - // setState(() { - // _selectedIndex = 2; - // }); - // }, - // icon: const Icon( - // Icons.file_present, - // size: 35, - // ), - // ), - // ], ); }