1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/widgets/network_image_widget.dart

76 lines
2.0 KiB
Dart
Raw Normal View History

2019-05-11 07:43:30 +00:00
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;
2019-05-11 07:43:30 +00:00
final bool allowFullScreen;
2019-05-11 07:48:01 +00:00
final bool roundedEdges;
final double? width;
final double? height;
final double? loadingHeight;
2019-05-11 07:43:30 +00:00
const NetworkImageWidget({
Key? key,
required this.url,
2021-03-10 23:02:41 +00:00
this.thumbnailURL,
2019-05-11 07:43:30 +00:00
this.allowFullScreen = false,
this.width,
this.height,
2019-05-11 07:48:01 +00:00
this.roundedEdges = true,
2019-05-20 07:13:12 +00:00
this.loadingHeight,
2022-03-11 15:36:42 +00:00
}) : super(key: key);
2019-05-11 07:43:30 +00:00
double? get _loadingHeight => loadingHeight != null ? loadingHeight : height;
2019-05-20 07:13:12 +00:00
double? get _loadingWidth => width;
2019-05-20 07:13:12 +00:00
2019-05-11 07:43:30 +00:00
@override
Widget build(BuildContext context) {
return Material(
child: InkWell(
onTap: allowFullScreen
? () {
showImageFullScreen(context, url);
}
: null,
child: CachedNetworkImage(
2021-03-10 23:02:41 +00:00
imageUrl: thumbnailURL ?? url,
2019-05-11 07:43:30 +00:00
width: width,
height: height,
fit: BoxFit.cover,
placeholder: (c, s) => Container(
2019-05-20 07:13:12 +00:00
width: _loadingWidth,
height: _loadingHeight,
2019-05-11 07:43:30 +00:00
color: Colors.lightBlueAccent,
child: Center(
child: CircularProgressIndicator(),
),
),
errorWidget: (c, s, o) => Container(
2019-05-20 07:13:12 +00:00
width: _loadingWidth,
height: _loadingHeight,
2019-05-11 07:43:30 +00:00
color: Colors.red,
child: Center(
child: Icon(
Icons.error,
color: Colors.white,
),
),
),
),
),
2019-05-11 07:48:01 +00:00
borderRadius:
roundedEdges ? BorderRadius.all(Radius.circular(8.0)) : null,
2019-05-11 07:43:30 +00:00
clipBehavior: Clip.hardEdge,
);
}
}