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