update droptown to take in editable & disapble medical aid fields if not required
This commit is contained in:
parent
657a9a48d1
commit
f667574ecd
3 changed files with 25 additions and 12 deletions
|
|
@ -145,6 +145,7 @@ class _PrescripInputState extends State<PrescripInput> {
|
|||
hintText: "Quantity",
|
||||
dropdownOptions: numberOptions,
|
||||
required: true,
|
||||
editable: true,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 25.0),
|
||||
|
|
@ -155,6 +156,7 @@ class _PrescripInputState extends State<PrescripInput> {
|
|||
hintText: "Dosage",
|
||||
dropdownOptions: numberOptions,
|
||||
required: true,
|
||||
editable: true,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 25.0),
|
||||
|
|
@ -165,6 +167,7 @@ class _PrescripInputState extends State<PrescripInput> {
|
|||
hintText: "Times Daily",
|
||||
dropdownOptions: numberOptions,
|
||||
required: true,
|
||||
editable: true,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 25.0),
|
||||
|
|
@ -175,6 +178,7 @@ class _PrescripInputState extends State<PrescripInput> {
|
|||
hintText: "No. Days",
|
||||
dropdownOptions: numberOptions,
|
||||
required: true,
|
||||
editable: true,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 25.0),
|
||||
|
|
@ -185,6 +189,7 @@ class _PrescripInputState extends State<PrescripInput> {
|
|||
hintText: "No. Repeats",
|
||||
dropdownOptions: numberOptions,
|
||||
required: true,
|
||||
editable: true,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue