merge-requests/714/head
hussam al-habibeh 5 years ago
parent df6a9a7822
commit a6a8f616e1

@ -114,12 +114,12 @@ class _PrescriptionHomeScreenState extends State<PrescriptionHomeScreen> with Si
tabWidget( tabWidget(
screenSize, screenSize,
_activeTab == 0, _activeTab == 0,
'All Prescription', "Favorite Templates",
), ),
tabWidget( tabWidget(
screenSize, screenSize,
_activeTab == 1, _activeTab == 1,
"Favorite Templates", 'All Prescription',
), ),
], ],
), ),
@ -133,13 +133,13 @@ class _PrescriptionHomeScreenState extends State<PrescriptionHomeScreen> with Si
physics: BouncingScrollPhysics(), physics: BouncingScrollPhysics(),
controller: _tabController, controller: _tabController,
children: [ children: [
PrescriptionFormWidget(
widget.model, widget.patient, widget.model.prescriptionList),
AddFavPrescription( AddFavPrescription(
model: widget.model, model: widget.model,
patient: widget.patient, patient: widget.patient,
categoryID: '55', categoryID: '55',
), ),
PrescriptionFormWidget(
widget.model, widget.patient, widget.model.prescriptionList),
], ],
), ),
), ),

Loading…
Cancel
Save