add arrow to patient card

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

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

Loading…
Cancel
Save