fix font size in header

merge-requests/730/head
Elham Rababah 5 years ago
parent cb5abfb2ec
commit 4cdc654348

@ -224,13 +224,15 @@ class GeneralLabResultHeader extends StatelessWidget
RichText( RichText(
text: TextSpan( text: TextSpan(
style: TextStyle( style: TextStyle(
fontSize: 1.6 * SizeConfig.textMultiplier, fontSize: 1.6 * SizeConfig.textMultiplier,
color: Colors.black), color: Colors.black,
fontFamily: 'Poppins',
),
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