|
|
|
|
@ -15,7 +15,7 @@ class LabResultHistoryPage extends StatelessWidget {
|
|
|
|
|
final PatiantInformtion patient;
|
|
|
|
|
|
|
|
|
|
LabResultHistoryPage({this.patientLabOrder, this.filterName, this.patient});
|
|
|
|
|
// TODO mosa changes
|
|
|
|
|
// TODO mosa UI changes
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return BaseView<LabsViewModel>(
|
|
|
|
|
@ -34,6 +34,7 @@ class LabResultHistoryPage extends StatelessWidget {
|
|
|
|
|
...List.generate(model.labOrdersResultHistoryList.length,
|
|
|
|
|
(index) {
|
|
|
|
|
return Container(
|
|
|
|
|
margin: EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Row(
|
|
|
|
|
@ -116,6 +117,14 @@ class LabResultHistoryPage extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Divider(
|
|
|
|
|
color: Colors.grey,
|
|
|
|
|
height: 0.75,
|
|
|
|
|
thickness: 0.75,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|