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

Loading…
Cancel
Save