1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/ui/widgets/network_image_widget.dart
2022-03-11 16:36:42 +01:00

76 lines
2.0 KiB
Dart

import 'package:cached_network_image/cached_network_image.dart';
import 'package:comunic/utils/ui_utils.dart';
import 'package:flutter/material.dart';
/// Network image widget
///
/// Widget useful to show remote image
///
/// @author Pierre HUBERT
class NetworkImageWidget extends StatelessWidget {
final String url;
final String? thumbnailURL;
final bool allowFullScreen;
final bool roundedEdges;
final double? width;
final double? height;
final double? loadingHeight;
const NetworkImageWidget({
Key? key,
required this.url,
this.thumbnailURL,
this.allowFullScreen = false,
this.width,
this.height,
this.roundedEdges = true,
this.loadingHeight,
}) : super(key: key);
double? get _loadingHeight => loadingHeight != null ? loadingHeight : height;
double? get _loadingWidth => width;
@override
Widget build(BuildContext context) {
return Material(
child: InkWell(
onTap: allowFullScreen
? () {
showImageFullScreen(context, url);
}
: null,
child: CachedNetworkImage(
imageUrl: thumbnailURL ?? url,
width: width,
height: height,
fit: BoxFit.cover,
placeholder: (c, s) => Container(
width: _loadingWidth,
height: _loadingHeight,
color: Colors.lightBlueAccent,
child: Center(
child: CircularProgressIndicator(),
),
),
errorWidget: (c, s, o) => Container(
width: _loadingWidth,
height: _loadingHeight,
color: Colors.red,
child: Center(
child: Icon(
Icons.error,
color: Colors.white,
),
),
),
),
),
borderRadius:
roundedEdges ? BorderRadius.all(Radius.circular(8.0)) : null,
clipBehavior: Clip.hardEdge,
);
}
}