|
|
|
|
@ -121,43 +121,6 @@ class LabResultWidget extends StatelessWidget {
|
|
|
|
|
(index) => Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
FadePage(
|
|
|
|
|
page: FlowChartPage(
|
|
|
|
|
filterName:
|
|
|
|
|
patientLabResultList[index].description,
|
|
|
|
|
patientLabOrder: patientLabOrder,
|
|
|
|
|
patient: patient,
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
),
|
|
|
|
|
// page: LabResultHistoryPage(
|
|
|
|
|
// filterName: patientLabResultList[index].description,
|
|
|
|
|
// patientLabOrder: patientLabOrder,
|
|
|
|
|
// patient: patient,
|
|
|
|
|
// ),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
// child: AppText(
|
|
|
|
|
// " (show details)",
|
|
|
|
|
// color: Colors.blue,
|
|
|
|
|
// fontSize: 12,
|
|
|
|
|
// ),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).showMoreBtn,
|
|
|
|
|
textDecoration: TextDecoration.underline,
|
|
|
|
|
color: Colors.blue,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
@ -191,7 +154,9 @@ class LabResultWidget extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Container(
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
child: Center(
|
|
|
|
|
@ -202,9 +167,54 @@ class LabResultWidget extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 12,
|
|
|
|
|
),
|
|
|
|
|
InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
FadePage(
|
|
|
|
|
page: FlowChartPage(
|
|
|
|
|
filterName:
|
|
|
|
|
patientLabResultList[index].description,
|
|
|
|
|
patientLabOrder: patientLabOrder,
|
|
|
|
|
patient: patient,
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
),
|
|
|
|
|
// page: LabResultHistoryPage(
|
|
|
|
|
// filterName: patientLabResultList[index].description,
|
|
|
|
|
// patientLabOrder: patientLabOrder,
|
|
|
|
|
// patient: patient,
|
|
|
|
|
// ),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
// child: AppText(
|
|
|
|
|
// " (show details)",
|
|
|
|
|
// color: Colors.blue,
|
|
|
|
|
// fontSize: 12,
|
|
|
|
|
// ),
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).showMoreBtn,
|
|
|
|
|
textDecoration: TextDecoration.underline,
|
|
|
|
|
color: Colors.blue,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
// SizedBox(
|
|
|
|
|
// height: 12,
|
|
|
|
|
// ),
|
|
|
|
|
Divider(),
|
|
|
|
|
],
|
|
|
|
|
))
|
|
|
|
|
|