add prescription & add lab test changes

merge-requests/461/head
hussam al-habibeh 5 years ago
parent 76b80600c6
commit c72d612646

File diff suppressed because it is too large Load Diff

@ -133,47 +133,56 @@ class _EntityListCheckboxSearchWidgetState
child: Row( child: Row(
children: [ children: [
AppText( AppText(
TranslationBase.of(context) TranslationBase.of(context)
.orderType), .orderType,
Radio( fontWeight: FontWeight.w700,
activeColor: Color(0xFFB9382C),
value: 0,
groupValue: selectedType,
onChanged: (value) {
historyInfo.type =
setSelectedType(value)
.toString();
historyInfo.type =
value.toString();
},
), ),
Text('routine'), Row(
Radio( children: [
activeColor: Color(0xFFB9382C), Radio(
groupValue: selectedType, activeColor:
value: 1, Color(0xFFB9382C),
onChanged: (value) { value: 0,
historyInfo.type = groupValue: selectedType,
setSelectedType(value) onChanged: (value) {
.toString(); historyInfo.type =
setSelectedType(value)
.toString();
historyInfo.type =
value.toString();
},
),
Text('routine'),
Radio(
activeColor:
Color(0xFFB9382C),
groupValue: selectedType,
value: 1,
onChanged: (value) {
historyInfo.type =
setSelectedType(value)
.toString();
historyInfo.type = historyInfo.type =
value.toString(); value.toString();
}, },
),
Text(TranslationBase.of(
context)
.urgent),
],
), ),
Text(TranslationBase.of(context)
.urgent),
], ],
), ),
), ),
), ),
SizedBox( SizedBox(
height: 15.0, height: 2.0,
), ),
Padding( Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
horizontal: 12), horizontal: 12, vertical: 12.0),
child: TextFields( child: TextFields(
hintText: TranslationBase.of(context) hintText: TranslationBase.of(context)
.remarks, .remarks,

Loading…
Cancel
Save