merge-requests/305/head
hussam al-habibeh 5 years ago
parent 3d60813146
commit d4ea901906

@ -338,7 +338,9 @@ class _PrescriptionFormWidgetState extends State<PrescriptionFormWidget> {
0.550, 0.550,
child: TextFields( child: TextFields(
inputFormatters: [ inputFormatters: [
LengthLimitingTextInputFormatter(4) LengthLimitingTextInputFormatter(4),
WhitelistingTextInputFormatter
.digitsOnly
], ],
hintText: TranslationBase.of(context) hintText: TranslationBase.of(context)
.strength, .strength,

@ -375,7 +375,7 @@ class _NewPrescriptionScreenState extends State<NewPrescriptionScreen> {
FontWeight FontWeight
.w700, .w700,
fontSize: fontSize:
17.0, 15.0,
), ),
Expanded( Expanded(
child: AppText( child: AppText(
@ -417,6 +417,14 @@ class _NewPrescriptionScreenState extends State<NewPrescriptionScreen> {
), ),
Row( Row(
children: [ children: [
AppText(
'Doctor Remarks : ',
fontWeight:
FontWeight
.w700,
fontSize:
13.0,
),
Expanded( Expanded(
child: child:
Container( Container(

@ -214,7 +214,9 @@ class _UpdatePrescriptionFormState extends State<UpdatePrescriptionForm> {
0.55, 0.55,
child: TextFields( child: TextFields(
inputFormatters: [ inputFormatters: [
LengthLimitingTextInputFormatter(4) LengthLimitingTextInputFormatter(4),
WhitelistingTextInputFormatter
.digitsOnly
], ],
hintText: widget.doseStreangth, hintText: widget.doseStreangth,
fontSize: 15.0, fontSize: 15.0,

@ -281,7 +281,7 @@ class _ProcedureScreenState extends State<ProcedureScreen> {
FontWeight FontWeight
.w700, .w700,
fontSize: fontSize:
15.0, 13.0,
), ),
AppText( AppText(
model model
@ -292,7 +292,7 @@ class _ProcedureScreenState extends State<ProcedureScreen> {
.procedureId .procedureId
.toString(), .toString(),
fontSize: fontSize:
13.0, 12.0,
), ),
SizedBox( SizedBox(
width: 12.0, width: 12.0,
@ -305,7 +305,7 @@ class _ProcedureScreenState extends State<ProcedureScreen> {
FontWeight FontWeight
.w700, .w700,
fontSize: fontSize:
14.0, 13.0,
), ),
Expanded( Expanded(
child: child:
@ -315,7 +315,7 @@ class _ProcedureScreenState extends State<ProcedureScreen> {
? 'Routine' ? 'Routine'
: 'Urgent', : 'Urgent',
fontSize: fontSize:
13.0, 11.5,
color: Color( color: Color(
0xFFB9382C), 0xFFB9382C),
), ),

Loading…
Cancel
Save