add function to delete note

This commit is contained in:
2024-07-31 14:35:53 +02:00
parent a3045a79b7
commit e137b53ad8
2 changed files with 113 additions and 14 deletions

View File

@@ -291,7 +291,10 @@ class _PatientNotesState extends State<PatientNotes> {
.secondaryColor()),
),
const SizedBox(height: 10),
BuildNotesList(notes: notesList),
BuildNotesList(
notes: notesList,
signedInUser: widget.signedInUser,
),
]),
),
);