From 76137c2aceb51b8d576d856306c846a3cda9afe6 Mon Sep 17 00:00:00 2001 From: Sikander Saleem Date: Tue, 28 May 2024 12:04:27 +0300 Subject: [PATCH] ppm technical comment added. --- lib/views/widgets/pentry/pentry_tbs_form.dart | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/views/widgets/pentry/pentry_tbs_form.dart b/lib/views/widgets/pentry/pentry_tbs_form.dart index 5b9e28c4..38cf7e73 100644 --- a/lib/views/widgets/pentry/pentry_tbs_form.dart +++ b/lib/views/widgets/pentry/pentry_tbs_form.dart @@ -272,6 +272,16 @@ class _PentryTBSFormState extends State { }, ), 8.height, + AppTextFormField( + labelText: context.translation.comments, + initialValue: (widget.model.comments ?? "").toString(), + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.titleMedium, + onChange: (value) { + widget.model.comments = value; + }, + ), + 8.height, ESignature( title: context.translation.nurseSignature, oldSignature: widget.model.nurseSignature,