From d58d9bdf838646b1bfa12dda4d7a73c9e6e72fb1 Mon Sep 17 00:00:00 2001 From: juan Date: Sun, 30 Mar 2025 14:45:52 -0400 Subject: [PATCH] removed the underlying yellow line in the attachment name --- lib/attachmentWidget.dart | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/attachmentWidget.dart b/lib/attachmentWidget.dart index 1239f2a..cb2edb8 100644 --- a/lib/attachmentWidget.dart +++ b/lib/attachmentWidget.dart @@ -15,13 +15,17 @@ class AttachmentWidget extends StatelessWidget { child: Row( children: [ CloseButton( - onPressed: () => { + onPressed: () => { Navigator.pop(context) } ), Text( attachment.name.toString(), //its alr a string but incase ¯\(ツ)/¯ - style: TextStyle(color: Colors.black, fontSize: 20), //TODO: personalize your fonts + style: TextStyle( + color: Colors.black, + fontSize: 20, + decoration: TextDecoration.none + ), //TODO: personalize your fonts ), ], ),