fluffychat/lib/widgets/content_banner.dart

82 lines
2.3 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
2020-09-07 15:08:01 +00:00
import 'package:cached_network_image/cached_network_image.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2020-01-01 18:10:13 +00:00
import 'matrix.dart';
class ContentBanner extends StatelessWidget {
2020-04-28 12:11:56 +00:00
final Uri mxContent;
2020-01-01 18:10:13 +00:00
final double height;
final IconData defaultIcon;
final bool loading;
2020-01-19 14:07:42 +00:00
final Function onEdit;
2021-01-20 19:27:09 +00:00
final Client client;
2021-02-03 14:47:51 +00:00
final double opacity;
2020-01-01 18:10:13 +00:00
const ContentBanner(this.mxContent,
{this.height = 400,
this.defaultIcon = Icons.people_outline,
this.loading = false,
2020-01-19 14:07:42 +00:00
this.onEdit,
2021-01-20 19:27:09 +00:00
this.client,
2021-02-03 14:47:51 +00:00
this.opacity = 0.75,
2020-01-01 18:10:13 +00:00
Key key})
: super(key: key);
@override
Widget build(BuildContext context) {
final mediaQuery = MediaQuery.of(context);
2020-05-13 13:58:59 +00:00
final bannerSize =
2020-01-01 18:10:13 +00:00
(mediaQuery.size.width * mediaQuery.devicePixelRatio).toInt();
2020-05-13 13:58:59 +00:00
final src = mxContent?.getThumbnail(
2021-01-20 19:27:09 +00:00
client ?? Matrix.of(context).client,
2020-01-01 18:10:13 +00:00
width: bannerSize,
height: bannerSize,
method: ThumbnailMethod.scale,
animated: true,
2020-01-01 18:10:13 +00:00
);
2020-04-08 10:38:52 +00:00
return Container(
2021-02-03 14:47:51 +00:00
height: height,
2020-04-08 10:38:52 +00:00
alignment: Alignment.center,
decoration: BoxDecoration(
color: Theme.of(context).secondaryHeaderColor,
),
child: Stack(
children: <Widget>[
Positioned(
left: 0,
right: 0,
top: 0,
bottom: 0,
child: Opacity(
2021-02-03 14:47:51 +00:00
opacity: opacity,
2021-05-31 17:33:40 +00:00
child:
(!loading && mxContent != null && mxContent.host.isNotEmpty)
? CachedNetworkImage(
imageUrl: src.toString(),
height: 300,
fit: BoxFit.cover,
)
: Icon(defaultIcon, size: 200),
2020-01-19 14:07:42 +00:00
),
2020-04-08 10:38:52 +00:00
),
2020-05-13 13:58:59 +00:00
if (onEdit != null)
2020-04-08 10:38:52 +00:00
Container(
2021-10-14 16:09:30 +00:00
margin: const EdgeInsets.all(8),
2020-04-08 10:38:52 +00:00
alignment: Alignment.bottomRight,
child: FloatingActionButton(
mini: true,
onPressed: onEdit,
2021-05-31 17:33:40 +00:00
backgroundColor: Theme.of(context).backgroundColor,
foregroundColor: Theme.of(context).textTheme.bodyText1.color,
2021-10-14 16:09:30 +00:00
child: const Icon(Icons.camera_alt_outlined),
2020-01-19 14:07:42 +00:00
),
2020-04-08 10:38:52 +00:00
),
],
),
2020-01-01 18:10:13 +00:00
);
}
}