2020-01-01 18:10:13 +00:00
|
|
|
import 'package:bubble/bubble.dart';
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
2020-05-07 05:52:40 +00:00
|
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class StateMessage extends StatelessWidget {
|
|
|
|
final Event event;
|
|
|
|
const StateMessage(this.event);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-01-05 11:27:03 +00:00
|
|
|
if (event.type == EventTypes.Redaction) return Container();
|
2020-01-01 18:10:13 +00:00
|
|
|
return Padding(
|
2020-01-18 12:22:22 +00:00
|
|
|
padding: const EdgeInsets.only(
|
|
|
|
left: 8.0,
|
|
|
|
right: 8.0,
|
|
|
|
bottom: 8.0,
|
|
|
|
),
|
2020-03-13 19:09:32 +00:00
|
|
|
child: Bubble(
|
|
|
|
elevation: 0,
|
2020-03-13 21:12:46 +00:00
|
|
|
color: Theme.of(context).backgroundColor.withOpacity(0.66),
|
2020-03-13 19:09:32 +00:00
|
|
|
alignment: Alignment.center,
|
2020-03-13 20:42:05 +00:00
|
|
|
child: Text(
|
2020-05-07 05:52:40 +00:00
|
|
|
event.getLocalizedBody(L10n.of(context)),
|
2020-03-13 19:09:32 +00:00
|
|
|
textAlign: TextAlign.center,
|
2020-03-13 20:42:05 +00:00
|
|
|
style: TextStyle(
|
2020-05-06 16:43:30 +00:00
|
|
|
color: Theme.of(context).textTheme.bodyText2.color,
|
2020-03-13 19:09:32 +00:00
|
|
|
decoration: event.redacted ? TextDecoration.lineThrough : null,
|
2020-01-19 14:07:42 +00:00
|
|
|
),
|
2020-01-03 10:57:00 +00:00
|
|
|
),
|
2020-01-01 18:10:13 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|