Merge branch 'search_out_patient' into 'development'

fix scrolling step 2

See merge request Cloud_Solution/doctor_app_flutter!612
merge-requests/613/merge
Mohammad Aljammal 5 years ago
commit 8ac7ed88ed

@ -81,8 +81,7 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>with SingleT
appBarTitle: TranslationBase.of(context).patientProfile, appBarTitle: TranslationBase.of(context).patientProfile,
isShowAppBar: false,//TODO fix button location isShowAppBar: false,//TODO fix button location
// appBar: PatientProfileHeaderNewDesignAppBar(patient,arrivalType??'0',patientType,isInpatient: isInpatient,), // appBar: PatientProfileHeaderNewDesignAppBar(patient,arrivalType??'0',patientType,isInpatient: isInpatient,),
body: Container( body: Column(
child: Column(
children: [ children: [
Stack( Stack(
children: [ children: [
@ -98,9 +97,9 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>with SingleT
? 210 ? 210
: 0, : 0,
), ),
SingleChildScrollView( Container(
child: Container( height: MediaQuery.of(context).size.height *0.69,
height: MediaQuery.of(context).size.height *0.65,
child: ListView( child: ListView(
children: [ children: [
Container( Container(
@ -695,7 +694,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>with SingleT
], ],
), ),
), ),
),
], ],
), ),
@ -789,7 +787,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>with SingleT
], ],
), ),
),
)); ));
} }

Loading…
Cancel
Save