Merge branch 'list-performance' into 'development'

add arrow to patient card

See merge request Cloud_Solution/doctor_app_flutter!822
merge-requests/820/merge
Mohammad Aljammal 4 years ago
commit 9297ea037d

@ -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