Files
minstrel/flutter_client/lib/library/widgets/cached_indicator.dart
T
bvandeusen 5114a8118c feat(flutter): CachedIndicator + Download buttons + app startup wiring
CachedIndicator (lib/library/widgets/cached_indicator.dart) — small
download glyph rendered next to a track row when AudioCacheManager
reports the track as cached. FutureBuilder one-shot.

Wiring:
  - track_row.dart: render CachedIndicator before the duration label
  - playlist_detail: 'Download' OutlinedButton next to Play; pins all
    playable tracks with source: autoPlaylist + SnackBar feedback
  - album_detail: 'Download' IconButton in the header; same pin pattern
  - app.dart: now ConsumerStatefulWidget — initState fires the initial
    sync + activates the prefetcher provider

Together these complete the operator-facing surfaces of the offline
slice: visible cache state, explicit download trigger, automatic
sync + queue-ahead prefetch.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-09 23:23:26 -04:00

30 lines
1.0 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../../cache/audio_cache_manager.dart';
import '../../theme/theme_extension.dart';
/// Small download glyph shown next to a track row when the track is
/// cached locally. FutureBuilder one-shot — track rows are short-lived
/// and cache state rarely changes mid-render.
class CachedIndicator extends ConsumerWidget {
const CachedIndicator({required this.trackId, super.key});
final String trackId;
@override
Widget build(BuildContext context, WidgetRef ref) {
final mgr = ref.read(audioCacheManagerProvider);
final fs = Theme.of(context).extension<FabledSwordTheme>()!;
return FutureBuilder<bool>(
future: mgr.isCached(trackId),
builder: (ctx, snap) {
if (snap.data != true) return const SizedBox.shrink();
return Padding(
padding: const EdgeInsets.only(left: 4),
child: Icon(Icons.download_done, size: 14, color: fs.accent),
);
},
);
}
}