2020-02-11 11:49:39 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:fluffychat/utils/event_extension.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class ReplyContent extends StatelessWidget {
|
|
|
|
final Event replyEvent;
|
|
|
|
final bool lightText;
|
|
|
|
|
|
|
|
const ReplyContent(this.replyEvent, {this.lightText = false, Key key})
|
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Container(
|
|
|
|
width: 3,
|
|
|
|
height: 36,
|
|
|
|
color: lightText ? Colors.white : Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
SizedBox(width: 6),
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
(replyEvent?.sender?.calcDisplayname() ?? "") + ":",
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color:
|
|
|
|
lightText ? Colors.white : Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
replyEvent?.getLocalizedBody(context,
|
2020-02-15 09:31:51 +00:00
|
|
|
withSenderNamePrefix: false, hideQuotes: true) ??
|
2020-02-11 11:49:39 +00:00
|
|
|
"",
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
maxLines: 1,
|
|
|
|
style:
|
|
|
|
TextStyle(color: lightText ? Colors.white : Colors.black),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|