fix design issue

merge-requests/737/head
Elham Rababah 5 years ago
parent 57399c3dcb
commit 717468b637

@ -213,11 +213,12 @@ class PatientProfileAppBar extends StatelessWidget
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[ children: <Widget>[
AppText( AppText(
TranslationBase TranslationBase.of(context).appointmentDate +
.of(context)
.appointmentDate +
" : ", " : ",
fontSize: 14, fontSize: 14,
fontWeight: FontWeight.normal,
fontFamily: 'Poppins',
color: Colors.black,
), ),
patient.startTime != null patient.startTime != null
? Container( ? Container(
@ -266,9 +267,11 @@ class PatientProfileAppBar extends StatelessWidget
color: Colors.black), color: Colors.black),
children: <TextSpan>[ children: <TextSpan>[
new TextSpan( new TextSpan(
text: TranslationBase.of(context).fileNumber, text: TranslationBase
.of(context)
.fileNumber,
style: TextStyle( style: TextStyle(
fontSize: 12, fontFamily: 'Poppins')), fontSize: 14, fontFamily: 'Poppins')),
new TextSpan( new TextSpan(
text: patient.patientId.toString(), text: patient.patientId.toString(),
style: TextStyle( style: TextStyle(

Loading…
Cancel
Save