RhythmBox/lib/widgets/auto_cache_image.dart

27 lines
619 B
Dart
Raw Normal View History

2024-08-26 12:26:07 +00:00
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:rhythm_box/platform.dart';
class AutoCacheImage extends StatelessWidget {
final String url;
final double? width, height;
const AutoCacheImage(this.url, {super.key, this.width, this.height});
@override
Widget build(BuildContext context) {
if (PlatformInfo.canCacheImage) {
return CachedNetworkImage(
imageUrl: url,
width: width,
height: height,
);
}
return Image.network(
url,
width: width,
height: height,
);
}
}