From 086ca517d20293690381725712c85a5452b22d1a Mon Sep 17 00:00:00 2001 From: Mohammad Aljammal Date: Wed, 5 May 2021 12:24:30 +0300 Subject: [PATCH] Add Medical Report Page --- .../profile/medical_report/MedicalReportPage.dart | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/screens/patients/profile/medical_report/MedicalReportPage.dart diff --git a/lib/screens/patients/profile/medical_report/MedicalReportPage.dart b/lib/screens/patients/profile/medical_report/MedicalReportPage.dart new file mode 100644 index 00000000..f31c754e --- /dev/null +++ b/lib/screens/patients/profile/medical_report/MedicalReportPage.dart @@ -0,0 +1,8 @@ +import 'package:flutter/cupertino.dart'; + +class MedicalReportPage extends StatelessWidget { + @override + Widget build(BuildContext context) { + return Container(); + } +}