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,