forked from yaso_meth/mih-project
remove useless comments
This commit is contained in:
@@ -132,6 +132,7 @@ class _PatientViewState extends State<PatientView> {
|
||||
return MIHHeader(
|
||||
headerAlignment: MainAxisAlignment.end,
|
||||
headerItems: [
|
||||
//============ Patient Details ================
|
||||
Visibility(
|
||||
visible: _selectedIndex != 0,
|
||||
child: IconButton(
|
||||
@@ -160,6 +161,7 @@ class _PatientViewState extends State<PatientView> {
|
||||
),
|
||||
),
|
||||
),
|
||||
//============ Patient Notes ================
|
||||
Visibility(
|
||||
visible: _selectedIndex != 1,
|
||||
child: IconButton(
|
||||
@@ -188,6 +190,7 @@ class _PatientViewState extends State<PatientView> {
|
||||
),
|
||||
),
|
||||
),
|
||||
//============ Patient Files ================
|
||||
Visibility(
|
||||
visible: _selectedIndex != 2,
|
||||
child: IconButton(
|
||||
@@ -217,41 +220,6 @@ class _PatientViewState extends State<PatientView> {
|
||||
),
|
||||
),
|
||||
],
|
||||
// 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,
|
||||
// ),
|
||||
// ),
|
||||
// ],
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user