fluffychat/lib/components/list_items/state_message.dart

36 lines
1.0 KiB
Dart
Raw Normal View History

2020-01-01 19:10:13 +01:00
import 'package:bubble/bubble.dart';
import 'package:famedlysdk/famedlysdk.dart';
import 'package:flutter/material.dart';
2020-01-19 15:07:42 +01:00
import 'package:fluffychat/utils/event_extension.dart';
import 'package:link_text/link_text.dart';
2020-01-01 19:10:13 +01:00
class StateMessage extends StatelessWidget {
final Event event;
const StateMessage(this.event);
@override
Widget build(BuildContext context) {
2020-01-05 12:27:03 +01:00
if (event.type == EventTypes.Redaction) return Container();
2020-01-01 19:10:13 +01:00
return Padding(
2020-01-18 13:22:22 +01:00
padding: const EdgeInsets.only(
left: 8.0,
right: 8.0,
bottom: 8.0,
),
2020-03-13 20:09:32 +01:00
child: Bubble(
elevation: 0,
color: Theme.of(context).backgroundColor.withOpacity(0.5),
alignment: Alignment.center,
child: LinkText(
text: event.getLocalizedBody(context),
textAlign: TextAlign.center,
textStyle: TextStyle(
color: Theme.of(context).primaryColor,
decoration: event.redacted ? TextDecoration.lineThrough : null,
2020-01-19 15:07:42 +01:00
),
2020-01-03 11:57:00 +01:00
),
2020-01-01 19:10:13 +01:00
),
);
}
}