Merge branch 'fix_bugs_Mar' into 'development'

Fix bugs mar

See merge request Cloud_Solution/diplomatic-quarter!297
merge-requests/299/merge
Mohammad Aljammal 5 years ago
commit 008a39f043

@ -124,7 +124,7 @@ class _AmbulanceRequestIndexPageState extends State<AmbulanceRequestIndexPage> {
: Column( : Column(
children: [ children: [
SizedBox( SizedBox(
height: 80, height: 20,
), ),
Container( Container(
margin: EdgeInsets.only(left: 12, right: 12), margin: EdgeInsets.only(left: 12, right: 12),

@ -210,7 +210,9 @@ class _SelectTransportationMethodState
SizedBox( SizedBox(
height: 5, height: 5,
), ),
Row( Container(
margin: EdgeInsets.only(bottom:65 ),
child: Row(
children: [ children: [
Expanded( Expanded(
child: InkWell( child: InkWell(
@ -276,6 +278,10 @@ class _SelectTransportationMethodState
), ),
], ],
), ),
),
SizedBox(
height: 30,
),
], ],
), ),
SizedBox( SizedBox(

@ -73,6 +73,7 @@ class _SummaryState extends State<Summary> {
Texts(TranslationBase.of(context).billAmount,textAlign: TextAlign.start,), Texts(TranslationBase.of(context).billAmount,textAlign: TextAlign.start,),
SizedBox(height: 5,), SizedBox(height: 5,),
Container( Container(
height: 55, height: 55,
padding: EdgeInsets.all(10), padding: EdgeInsets.all(10),
decoration: BoxDecoration( decoration: BoxDecoration(
@ -87,8 +88,8 @@ class _SummaryState extends State<Summary> {
], ],
), ),
), ),
SizedBox(height: 250),
SizedBox(height: 45,),
], ],
), ),

@ -23,16 +23,19 @@ class FlowChartPage extends StatelessWidget {
appBarTitle: filterName, appBarTitle: filterName,
baseViewModel: model, baseViewModel: model,
body: SingleChildScrollView( body: SingleChildScrollView(
child: model.labOrdersResultsList.isNotEmpty child: model. labOrdersResultsList.isNotEmpty
? Container( ? Container(
child: LabResultChartAndDetails( child: LabResultChartAndDetails(
name: filterName, name: filterName,
labResult: model.labOrdersResultsList, labResult: model.labOrdersResultsList,
), ),
) )
: Container( : Center(
child: Container(
padding: EdgeInsets.only(top: MediaQuery.of(context).size.height *0.42),
child: Center( child: Center(
child: Texts('no Data'), child: Texts('No Data'),
),
), ),
), ),
), ),

Loading…
Cancel
Save