removed the underlying yellow line in the attachment name

This commit is contained in:
Juan Marulanda De Los Rios 2025-03-30 14:45:52 -04:00
parent 9ea012f7ad
commit d58d9bdf83

View File

@ -15,13 +15,17 @@ class AttachmentWidget extends StatelessWidget {
child: Row( child: Row(
children: [ children: [
CloseButton( CloseButton(
onPressed: () => { onPressed: () => {
Navigator.pop(context) Navigator.pop(context)
} }
), ),
Text( Text(
attachment.name.toString(), //its alr a string but incase ¯\()/¯ 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
), ),
], ],
), ),