fluffychat/lib/pages/chat/events/state_message.dart

41 lines
1.1 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2020-01-01 18:10:13 +00:00
2022-12-30 16:54:01 +00:00
import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart';
2021-11-09 20:32:16 +00:00
import '../../../config/app_config.dart';
2021-02-07 07:59:58 +00:00
2020-01-01 18:10:13 +00:00
class StateMessage extends StatelessWidget {
final Event event;
const StateMessage(this.event, {super.key});
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
return Padding(
2024-03-27 06:54:21 +00:00
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: Center(
child: Container(
padding: const EdgeInsets.all(8),
child: Text(
event.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
),
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 12 * AppConfig.fontSizeFactor,
decoration: event.redacted ? TextDecoration.lineThrough : null,
shadows: [
Shadow(
color: Theme.of(context).colorScheme.surface,
blurRadius: 3,
),
],
),
),
2020-01-03 10:57:00 +00:00
),
2020-01-01 18:10:13 +00:00
),
);
}
}