fix merge issue in patient_referral_screen.dart

merge-requests/924/head
Elham Rababh 4 years ago
parent 3200a7a351
commit af10c60a7e

@ -46,9 +46,11 @@ class _PatientReferralScreen extends State<PatientReferralScreen>
@override
Widget build(BuildContext context) {
return AppScaffold(
isShowAppBar: true,
appBar: PatientSearchHeader(
title: TranslationBase.of(context).patientsreferral,
),
appBarTitle: TranslationBase.of(context).patientsreferral,
body: Scaffold(
extendBodyBehindAppBar: true,
// backgroundColor: Colors.white,
@ -101,6 +103,8 @@ class _PatientReferralScreen extends State<PatientReferralScreen>
),
),
),
body: Column(
children: <Widget>[
Expanded(
child: TabBarView(
physics: BouncingScrollPhysics(),
@ -115,6 +119,6 @@ class _PatientReferralScreen extends State<PatientReferralScreen>
)
],
),
);
));
}
}

Loading…
Cancel
Save