diff --git a/lib/screens/prescription/add_prescription_form.dart b/lib/screens/prescription/add_prescription_form.dart index b1e79ae2..0b9750fc 100644 --- a/lib/screens/prescription/add_prescription_form.dart +++ b/lib/screens/prescription/add_prescription_form.dart @@ -338,7 +338,9 @@ class _PrescriptionFormWidgetState extends State { 0.550, child: TextFields( inputFormatters: [ - LengthLimitingTextInputFormatter(4) + LengthLimitingTextInputFormatter(4), + WhitelistingTextInputFormatter + .digitsOnly ], hintText: TranslationBase.of(context) .strength, diff --git a/lib/screens/prescription/prescription_screen.dart b/lib/screens/prescription/prescription_screen.dart index 11541e39..216ffa05 100644 --- a/lib/screens/prescription/prescription_screen.dart +++ b/lib/screens/prescription/prescription_screen.dart @@ -375,7 +375,7 @@ class _NewPrescriptionScreenState extends State { FontWeight .w700, fontSize: - 17.0, + 15.0, ), Expanded( child: AppText( @@ -417,6 +417,14 @@ class _NewPrescriptionScreenState extends State { ), Row( children: [ + AppText( + 'Doctor Remarks : ', + fontWeight: + FontWeight + .w700, + fontSize: + 13.0, + ), Expanded( child: Container( diff --git a/lib/screens/prescription/update_prescription_form.dart b/lib/screens/prescription/update_prescription_form.dart index 714659ac..885386a6 100644 --- a/lib/screens/prescription/update_prescription_form.dart +++ b/lib/screens/prescription/update_prescription_form.dart @@ -214,7 +214,9 @@ class _UpdatePrescriptionFormState extends State { 0.55, child: TextFields( inputFormatters: [ - LengthLimitingTextInputFormatter(4) + LengthLimitingTextInputFormatter(4), + WhitelistingTextInputFormatter + .digitsOnly ], hintText: widget.doseStreangth, fontSize: 15.0, diff --git a/lib/screens/procedures/procedure_screen.dart b/lib/screens/procedures/procedure_screen.dart index dd5c2952..1e225ce9 100644 --- a/lib/screens/procedures/procedure_screen.dart +++ b/lib/screens/procedures/procedure_screen.dart @@ -281,7 +281,7 @@ class _ProcedureScreenState extends State { FontWeight .w700, fontSize: - 15.0, + 13.0, ), AppText( model @@ -292,7 +292,7 @@ class _ProcedureScreenState extends State { .procedureId .toString(), fontSize: - 13.0, + 12.0, ), SizedBox( width: 12.0, @@ -305,7 +305,7 @@ class _ProcedureScreenState extends State { FontWeight .w700, fontSize: - 14.0, + 13.0, ), Expanded( child: @@ -315,7 +315,7 @@ class _ProcedureScreenState extends State { ? 'Routine' : 'Urgent', fontSize: - 13.0, + 11.5, color: Color( 0xFFB9382C), ),