From 0c1e4707791af1fd8ceb8f2e5fa4dfa648ffd8bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sat, 17 Jan 2026 03:31:13 +0100 Subject: [PATCH] Replace close button with a simple 'x' text for improved clarity and simplicity --- b0esche_cloud/lib/widgets/audio_player_bar.dart | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/b0esche_cloud/lib/widgets/audio_player_bar.dart b/b0esche_cloud/lib/widgets/audio_player_bar.dart index 1f2f62c..c2a9dc8 100644 --- a/b0esche_cloud/lib/widgets/audio_player_bar.dart +++ b/b0esche_cloud/lib/widgets/audio_player_bar.dart @@ -294,16 +294,19 @@ class _AudioPlayerBarState extends State fontWeight: FontWeight.w500, ), ), - // Close button (smaller) + // Close button (simple small x) if (widget.onClose != null) Padding( padding: const EdgeInsets.only(left: 8.0), - child: ModernGlassButton( - onPressed: widget.onClose!, - child: const Icon( - Icons.close, - color: AppTheme.primaryText, - size: 18, + child: GestureDetector( + onTap: widget.onClose!, + child: const Text( + '×', + style: TextStyle( + color: AppTheme.primaryText, + fontSize: 20, + fontWeight: FontWeight.bold, + ), ), ), ),