From 80841e409f880033b3f60e62a942852d0cd36a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sat, 31 Jan 2026 21:56:10 +0100 Subject: [PATCH] Refactor project metadata and improve audio player bar responsiveness --- b0esche_cloud/README.md | 2 +- b0esche_cloud/lib/widgets/audio_player_bar.dart | 3 ++- b0esche_cloud/web/manifest.json | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/b0esche_cloud/README.md b/b0esche_cloud/README.md index b8b3b48..5ea8d9e 100644 --- a/b0esche_cloud/README.md +++ b/b0esche_cloud/README.md @@ -1,3 +1,3 @@ # b0esche_cloud -A new Flutter project. +b0esche secure cloud diff --git a/b0esche_cloud/lib/widgets/audio_player_bar.dart b/b0esche_cloud/lib/widgets/audio_player_bar.dart index 45eabb3..5c0b8ec 100644 --- a/b0esche_cloud/lib/widgets/audio_player_bar.dart +++ b/b0esche_cloud/lib/widgets/audio_player_bar.dart @@ -179,10 +179,11 @@ class _AudioPlayerBarState extends State @override Widget build(BuildContext context) { + final double screenwidth = MediaQuery.of(context).size.width; return AnimatedContainer( duration: const Duration(milliseconds: 300), height: 48, - width: MediaQuery.of(context).size.width * 0.2, + width: screenwidth > 420 ? screenwidth * 0.2 : screenwidth * 0.85, padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6), decoration: AppTheme.glassDecoration.copyWith( borderRadius: BorderRadius.circular(16), diff --git a/b0esche_cloud/web/manifest.json b/b0esche_cloud/web/manifest.json index 668cea7..7b06580 100644 --- a/b0esche_cloud/web/manifest.json +++ b/b0esche_cloud/web/manifest.json @@ -1,11 +1,11 @@ { - "name": "b0esche_cloud", - "short_name": "b0esche_cloud", + "name": "b0esche.cloud", + "short_name": "b0esche", "start_url": ".", "display": "standalone", "background_color": "#0175C2", "theme_color": "#0175C2", - "description": "A new Flutter project.", + "description": "b0esche secure cloud", "orientation": "portrait-primary", "prefer_related_applications": false, "icons": [ @@ -32,4 +32,4 @@ "purpose": "maskable" } ] -} +} \ No newline at end of file