|
|
|
|
@ -100,13 +100,25 @@ class PrescriptionItemsPage extends StatelessWidget {
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).route,color: Colors.grey,),
|
|
|
|
|
Expanded(child: Texts(model.prescriptionReportList[index].routeN)),
|
|
|
|
|
Expanded(child: Texts(" "+model.prescriptionReportList[index].routeN)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).frequency,color: Colors.grey,),
|
|
|
|
|
Texts(model.prescriptionReportList[index].frequencyN ?? ''),
|
|
|
|
|
Texts(" "+model.prescriptionReportList[index].frequencyN ?? ''),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).dailyDoses,color: Colors.grey,),
|
|
|
|
|
Texts(" "+model.prescriptionReportList[index].doseDailyQuantity ?? ''),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).duration,color: Colors.grey,),
|
|
|
|
|
Texts(" "+model.prescriptionReportList[index].days.toString() ?? ''),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 12,),
|
|
|
|
|
@ -178,13 +190,25 @@ class PrescriptionItemsPage extends StatelessWidget {
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).route,color: Colors.grey,),
|
|
|
|
|
Expanded(child: Texts(model.prescriptionReportEnhList[index].route??'')),
|
|
|
|
|
Expanded(child: Texts(" "+model.prescriptionReportEnhList[index].route??'')),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).frequency,color: Colors.grey,),
|
|
|
|
|
Texts(model.prescriptionReportEnhList[index].frequency ?? ''),
|
|
|
|
|
Texts(" "+model.prescriptionReportEnhList[index].frequency ?? ''),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).dailyDoses,color: Colors.grey,),
|
|
|
|
|
Texts(" "+model.prescriptionReportEnhList[index].doseDailyQuantity.toString() ?? ''),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Texts(TranslationBase.of(context).duration,color: Colors.grey,),
|
|
|
|
|
Texts(" "+model.prescriptionReportList[index].days.toString() ?? ''),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 12,),
|
|
|
|
|
|