File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ List<RadioStation> radioStationsDB = [
4141 const RadioStation (
4242 id: 'r_bigfm' ,
4343 name: 'bigFM' ,
44- image: 'https://upload.wikimedia.org/wikipedia/de/f/f4/BigFM.svg' ,
44+ image:
45+ 'https://file.atsw.de/production/static/1783676137495/ab66799083e298839f274a7a8dd9fa15.svg' ,
4546 streamUrl: 'https://stream.bigfm.de/deutschland/mp3-128/' ,
4647 genre: 'Pop' ,
4748 ),
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ class _BottomActionsRowState extends State<BottomActionsRow> {
162162 ),
163163 tooltip: l10n.addToPlaylist,
164164 ),
165- if (queue.isNotEmpty && ! widget.isLargeScreen)
165+ if (queue.isNotEmpty && ! isRadioStation && ! widget.isLargeScreen)
166166 _buildSimpleActionButton (
167167 context: context,
168168 icon: FluentIcons .apps_list_24_filled,
@@ -175,14 +175,15 @@ class _BottomActionsRowState extends State<BottomActionsRow> {
175175 tooltip: l10n.queue,
176176 ),
177177 if (! offlineMode.value) ...[
178- _buildSimpleActionButton (
179- context: context,
180- icon: FluentIcons .text_quote_24_regular,
181- colorScheme: colorScheme,
182- size: responsiveIconSize,
183- onPressed: widget.lyricsController.flipcard,
184- tooltip: l10n.lyrics,
185- ),
178+ if (! isRadioStation)
179+ _buildSimpleActionButton (
180+ context: context,
181+ icon: FluentIcons .text_quote_24_regular,
182+ colorScheme: colorScheme,
183+ size: responsiveIconSize,
184+ onPressed: widget.lyricsController.flipcard,
185+ tooltip: l10n.lyrics,
186+ ),
186187 _buildActionButton (
187188 context: context,
188189 icon: FluentIcons .heart_24_regular,
You can’t perform that action at this time.
0 commit comments