fix scrolling step 2

merge-requests/612/head
Elham Rababah 5 years ago
parent 72bf5d2337
commit cfe3056f17

@ -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