v2.51.2 — 5-Tab-Navigation (Rechtshänder) + Musikserver-Status

## Navigation (home_screen.dart)
- Neue Tab-Struktur: Start / Bibliothek / Jetzt läuft / Cloud / Mehr (NavigationBar, Icons home, library_music, play_circle_fill, cloud, more_horiz)
- ▶️ Jetzt läuft (Daumen-Zone rechts): öffnet Now-Playing-Fullscreen direkt; bei Pause Hinweis-Screen
- Start: Weiterhören (Zuletzt gehört), Recap-Karte, Statistik, Favoriten-Schnellzugriff, neue Downloads
- Bibliothek: Segmente Songs/Alben/Künstler/Jahre/Genres/Tags/Playlists/Favoriten/Downloads + 'Lied +'- und Such-Buttons oben
- Mehr: Einstellungen, Erweitert, Info, Abmelden
- Keine Funktionalität verloren: YT-Download, Scanner, Recap, Lyrics, Queue erreichbar

## Musikserver (Feature 2)
- 'Navidrome verbinden' → '☁️ Musikserver' + Statuspunkt (grün=verbunden, rot=offline, pulsierend=Sync läuft)
- Detail-Dialog: 'Verbunden mit Navidrome · musik.baka-net.de', Verbinden/Trennen/Browser
- Gespeicherte Zugangsdaten werden beim App-Start geladen
This commit is contained in:
Dustin
2026-08-05 07:57:01 +02:00
parent f886b0a42e
commit fdfc166807
2 changed files with 1098 additions and 112 deletions
+130 -2
View File
@@ -7,7 +7,21 @@ class MeloHeader extends StatelessWidget {
final VoidCallback? onServer;
final VoidCallback? onSettings;
const MeloHeader({super.key, required this.onDownload, required this.onSearch, this.onServer, this.onSettings});
/// Musikserver-Status (☁️ Musikserver + Statuspunkt):
/// `null` = kein Chip (alter Cloud-Button wird gezeigt).
final bool? serverVerbunden;
/// true = Sync läuft → Statuspunkt pulsiert.
final bool? serverSyncLaeuft;
const MeloHeader({
super.key,
required this.onDownload,
required this.onSearch,
this.onServer,
this.onSettings,
this.serverVerbunden,
this.serverSyncLaeuft,
});
@override
Widget build(BuildContext context) {
@@ -33,7 +47,14 @@ class MeloHeader extends StatelessWidget {
],
),
Row(children: [
if (onServer != null) ...[
if (serverVerbunden != null) ...[
_ServerStatusChip(
verbunden: serverVerbunden!,
syncLaeuft: serverSyncLaeuft ?? false,
onTap: onServer,
),
const SizedBox(width: 8),
] else if (onServer != null) ...[
_btn(Icons.cloud, onServer!),
const SizedBox(width: 8),
],
@@ -86,3 +107,110 @@ class MeloHeader extends StatelessWidget {
);
}
}
/// Kompakter „☁️ Musikserver“-Chip mit Statuspunkt.
/// Grün = verbunden, Rot = offline, pulsierend = Sync läuft.
class _ServerStatusChip extends StatefulWidget {
final bool verbunden;
final bool syncLaeuft;
final VoidCallback? onTap;
const _ServerStatusChip({
required this.verbunden,
required this.syncLaeuft,
this.onTap,
});
@override
State<_ServerStatusChip> createState() => _ServerStatusChipState();
}
class _ServerStatusChipState extends State<_ServerStatusChip>
with SingleTickerProviderStateMixin {
late final AnimationController _controller;
@override
void initState() {
super.initState();
_controller = AnimationController(
vsync: this,
duration: const Duration(milliseconds: 900),
);
if (widget.syncLaeuft) _controller.repeat(reverse: true);
}
@override
void didUpdateWidget(covariant _ServerStatusChip oldWidget) {
super.didUpdateWidget(oldWidget);
if (widget.syncLaeuft && !oldWidget.syncLaeuft) {
_controller.repeat(reverse: true);
} else if (!widget.syncLaeuft && oldWidget.syncLaeuft) {
_controller.stop();
_controller.value = 0;
}
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final farbe = widget.verbunden
? const Color(0xFF4CAF50)
: const Color(0xFFEF5350);
return GestureDetector(
onTap: widget.onTap,
child: Container(
height: 40,
padding: const EdgeInsets.symmetric(horizontal: 12),
decoration: BoxDecoration(
color: MeloTheme.dunkel1,
borderRadius: BorderRadius.circular(12),
border: Border.all(color: MeloTheme.dunkel2),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const Text('☁️', style: TextStyle(fontSize: 13)),
const SizedBox(width: 6),
const Text(
'Musikserver',
style: TextStyle(fontSize: 11, color: Colors.white70, fontWeight: FontWeight.w500),
),
const SizedBox(width: 6),
AnimatedBuilder(
animation: _controller,
builder: (_, child) {
// Pulsierende Größe während des Syncs
final skala = widget.syncLaeuft
? 0.7 + (0.5 * _controller.value)
: 1.0;
return Transform.scale(
scale: skala,
child: child,
);
},
child: Container(
width: 9,
height: 9,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: farbe,
boxShadow: [
BoxShadow(
color: farbe.withValues(alpha: 0.6),
blurRadius: widget.syncLaeuft ? 10 : 5,
),
],
),
),
),
],
),
),
);
}
}