FurryChat/lib/components/list_items/state_message.dart

40 lines
1.1 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-01-01 18:10:13 +00:00
2020-10-15 13:51:24 +00:00
import '../../utils/matrix_locals.dart';
2020-01-01 18:10:13 +00:00
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,
2020-09-21 17:21:24 +00:00
bottom: 8.0,
2020-01-18 12:22:22 +00:00
),
2020-09-21 17:21:24 +00:00
child: Center(
child: Container(
padding: const EdgeInsets.all(4),
decoration: BoxDecoration(
color: Theme.of(context).backgroundColor.withOpacity(0.8),
borderRadius: BorderRadius.circular(7),
),
child: Text(
event.getLocalizedBody(MatrixLocals(L10n.of(context))),
2020-09-21 17:21:24 +00:00
textAlign: TextAlign.center,
style: TextStyle(
color: Theme.of(context).textTheme.bodyText2.color,
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
),
);
}
}