From 38590adf81cb938e34ac28bf9f063182cecaa69e Mon Sep 17 00:00:00 2001 From: yaso Date: Fri, 22 Nov 2024 11:54:33 +0200 Subject: [PATCH] remove useless comments --- .../patient_profile/patient_view.dart | 76 ------------------- 1 file changed, 76 deletions(-) diff --git a/Frontend/lib/mih_packages/patient_profile/patient_view.dart b/Frontend/lib/mih_packages/patient_profile/patient_view.dart index 690d81fb..73de67d2 100644 --- a/Frontend/lib/mih_packages/patient_profile/patient_view.dart +++ b/Frontend/lib/mih_packages/patient_profile/patient_view.dart @@ -275,81 +275,5 @@ class _PatientViewState extends State { onPullDown: () async {}, ), ); - // return Scaffold( - // body: SafeArea( - // child: SingleChildScrollView( - // child: Stack( - // children: [ - // Container( - // width: width, - // height: height, - // padding: const EdgeInsets.symmetric( - // vertical: 10.0, horizontal: 15.0), - // child: Column( - // mainAxisSize: MainAxisSize.max, - // children: [ - // Row( - // crossAxisAlignment: CrossAxisAlignment.end, - // mainAxisAlignment: MainAxisAlignment.end, - // children: [ - // 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, - // ), - // ), - // ], - // ), - // const SizedBox( - // height: 10.0, - // ), - // showSelection(_selectedIndex), - // ], - // ), - // ), - // Positioned( - // top: 10, - // left: 5, - // width: 50, - // height: 50, - // child: IconButton( - // onPressed: () { - // Navigator.of(context).pop(); - // }, - // icon: const Icon(Icons.arrow_back), - // ), - // ) - // ], - // ), - // ), - // ), - // ); } }