mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-04-20 22:32:05 +00:00
Project import generated by Copybara.
GitOrigin-RevId: 7d603f49704c866d68f88e7d5646ccf1b4b34614
This commit is contained in:
parent
e8e1c5e046
commit
184981281a
1 changed files with 6 additions and 1 deletions
|
|
@ -269,7 +269,12 @@ class _RenderStreamListState extends State<RenderStreamList> {
|
|||
|
||||
return ListTile(
|
||||
title: Text(item.title),
|
||||
subtitle: item.description == null ? null : Text(item.description!),
|
||||
subtitle: item.description == null && item.streamSource == null
|
||||
? null
|
||||
: Text(
|
||||
"${item.description ?? ""}\n---\n${item.streamSource?.title}"
|
||||
.trim(),
|
||||
),
|
||||
trailing: (item.source is MediaURLSource)
|
||||
? _buildDownloadButton(
|
||||
context,
|
||||
|
|
|
|||
Loading…
Reference in a new issue