add arrow to patient card

merge-requests/822/head
mosazaid 5 years ago
parent e334dbd221
commit c608b5601d

@ -347,6 +347,9 @@ class PatientCard extends StatelessWidget {
SizedBox( SizedBox(
width: 10, width: 10,
), ),
Expanded(
child: Row(
children: [
Expanded( Expanded(
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
@ -355,9 +358,6 @@ class PatientCard extends StatelessWidget {
label: TranslationBase.of(context).fileNumber, label: TranslationBase.of(context).fileNumber,
value: patientInfo.patientId.toString(), value: patientInfo.patientId.toString(),
), ),
//if (isInpatient)
CustomRow( CustomRow(
label: TranslationBase.of(context).age + " : ", label: TranslationBase.of(context).age + " : ",
value: value:
@ -399,7 +399,11 @@ class PatientCard extends StatelessWidget {
), ),
], ],
), ),
])) ]),
),
Icon(Icons.arrow_forward, size: 24,),
],
))
]), ]),
isFromLiveCare isFromLiveCare
? Row( ? Row(

Loading…
Cancel
Save