feat: Add download button to audio messages

onboarding
Sorunome 4 years ago
parent 8bcfbfa30b
commit 0eb5120df5

@ -177,6 +177,14 @@ class _AudioPlayerState extends State<AudioPlayerWidget> {
color: widget.color,
),
),
SizedBox(width: 8),
IconButton(
icon: Icon(
Icons.download_outlined,
color: widget.color,
),
onPressed: () => widget.event.saveFile(context),
),
],
);
}

Loading…
Cancel
Save