required modifications

This commit is contained in:
2024-07-01 15:00:47 +02:00
parent 4faa844eef
commit 543930fc4b
11 changed files with 294 additions and 23 deletions

View File

@@ -132,6 +132,7 @@ class _PatientNotesState extends State<PatientNotes> {
controller: titleController,
hintText: "Title of Note",
editable: true,
required: true,
),
),
const SizedBox(
@@ -142,6 +143,7 @@ class _PatientNotesState extends State<PatientNotes> {
controller: noteTextController,
hintText: "Note Details",
editable: true,
required: true,
),
),
],