Use default font weight in chat message sheet

This commit is contained in:
Tommy Chow
2023-11-24 16:07:21 -05:00
parent 23a5572c84
commit 92c534d843

View File

@ -84,12 +84,7 @@ class ChatMessage extends StatelessWidget {
Navigator.pop(context);
},
leading: const Icon(Icons.copy),
title: const Text(
'Copy',
style: TextStyle(
fontWeight: FontWeight.w600,
),
),
title: const Text('Copy'),
),
ListTile(
onTap: () {
@ -98,12 +93,7 @@ class ChatMessage extends StatelessWidget {
Navigator.pop(context);
},
leading: const Icon(Icons.reply),
title: const Text(
'Reply',
style: TextStyle(
fontWeight: FontWeight.w600,
),
),
title: const Text('Reply'),
),
],
),