fluffychat/lib/components/list_items/state_message.dart

35 lines
983 B
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';
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,
2020-03-13 22:12:46 +01:00
color: Theme.of(context).backgroundColor.withOpacity(0.66),
2020-03-13 20:09:32 +01:00
alignment: Alignment.center,
2020-03-13 21:42:05 +01:00
child: Text(
event.getLocalizedBody(context),
2020-03-13 20:09:32 +01:00
textAlign: TextAlign.center,
2020-03-13 21:42:05 +01:00
style: TextStyle(
2020-03-13 22:12:46 +01:00
color: Theme.of(context).textTheme.body1.color,
2020-03-13 20:09:32 +01:00
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
),
);
}
}