From a6a8f616e1e8c46b61f4c39d333afa2f68fe08d7 Mon Sep 17 00:00:00 2001 From: hussam al-habibeh Date: Tue, 1 Jun 2021 16:48:55 +0300 Subject: [PATCH] hot fix --- lib/screens/prescription/prescription_home_screen.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/screens/prescription/prescription_home_screen.dart b/lib/screens/prescription/prescription_home_screen.dart index 641b684a..6bdfabb1 100644 --- a/lib/screens/prescription/prescription_home_screen.dart +++ b/lib/screens/prescription/prescription_home_screen.dart @@ -114,12 +114,12 @@ class _PrescriptionHomeScreenState extends State with Si tabWidget( screenSize, _activeTab == 0, - 'All Prescription', + "Favorite Templates", ), tabWidget( screenSize, _activeTab == 1, - "Favorite Templates", + 'All Prescription', ), ], ), @@ -133,13 +133,13 @@ class _PrescriptionHomeScreenState extends State with Si physics: BouncingScrollPhysics(), controller: _tabController, children: [ - PrescriptionFormWidget( - widget.model, widget.patient, widget.model.prescriptionList), AddFavPrescription( model: widget.model, patient: widget.patient, categoryID: '55', ), + PrescriptionFormWidget( + widget.model, widget.patient, widget.model.prescriptionList), ], ), ),