fluffychat/lib/widgets/event_content/message_download_content.dart

56 lines
1.6 KiB
Dart
Raw Normal View History

import 'package:matrix/matrix.dart';
2020-05-03 11:56:53 +02:00
import 'package:flutter/material.dart';
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/event_extension.dart';
2020-05-03 11:56:53 +02:00
class MessageDownloadContent extends StatelessWidget {
final Event event;
final Color textColor;
const MessageDownloadContent(this.event, this.textColor, {Key key})
: super(key: key);
@override
Widget build(BuildContext context) {
2020-05-16 08:09:07 +02:00
final String filename = event.content.containsKey('filename')
? event.content['filename']
: event.body;
2020-05-03 11:56:53 +02:00
return Container(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
2021-03-04 12:28:06 +01:00
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Theme.of(context).scaffoldBackgroundColor,
onPrimary: Theme.of(context).textTheme.bodyText1.color,
2020-05-16 08:09:07 +02:00
),
2021-07-11 17:12:56 +02:00
onPressed: () => event.saveFile(context),
2020-11-22 16:43:45 +01:00
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(Icons.download_outlined),
SizedBox(width: 8),
2021-08-22 03:27:59 +02:00
Expanded(
child: Text(
filename,
overflow: TextOverflow.fade,
softWrap: false,
maxLines: 1,
),
2020-11-22 16:43:45 +01:00
),
],
2020-05-16 08:02:33 +02:00
),
),
2020-05-03 11:56:53 +02:00
if (event.sizeString != null)
Text(
2020-05-16 08:09:07 +02:00
event.sizeString,
2020-05-03 11:56:53 +02:00
style: TextStyle(
color: textColor,
),
),
],
),
);
}
}