|
|
|
@ -23,18 +23,21 @@ 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: Center(
|
|
|
|
child: Container(
|
|
|
|
child: Texts('no Data'),
|
|
|
|
padding: EdgeInsets.only(top: MediaQuery.of(context).size.height *0.42),
|
|
|
|
|
|
|
|
child: Center(
|
|
|
|
|
|
|
|
child: Texts('No Data'),
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|