replyHeader function
Implementation
Widget replyHeader(String name) {
return Row(children: [
const Icon(Icons.reply, color: Colors.grey),
Expanded(
child: Text(tr('reply.to', args: [name]),
style: const TextStyle(color: Colors.grey)))
]);
}