HyM attachments resolve: #2 #3

Merged
Juan merged 15 commits from login into main 2025-04-24 16:52:58 +00:00
Showing only changes of commit d58d9bdf83 - Show all commits

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
), ),
], ],
), ),