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

49 lines
1.6 KiB
Dart
Raw Normal View History

2020-01-01 19:10:13 +01:00
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 18:50:34 +02:00
import 'package:matrix/matrix.dart';
2020-01-01 19:10:13 +01:00
2022-12-30 17:54:01 +01:00
import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart';
2021-11-09 21:32:16 +01:00
import '../../../config/app_config.dart';
2021-02-07 08:59:58 +01:00
2020-01-01 19:10:13 +01:00
class StateMessage extends StatelessWidget {
final Event event;
const StateMessage(this.event, {Key? key}) : super(key: key);
2020-01-01 19:10:13 +01:00
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(
horizontal: 8.0,
vertical: 4.0,
),
child: Center(
child: Container(
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
2022-11-04 13:32:19 +01:00
color: Theme.of(context).colorScheme.onInverseSurface,
borderRadius: BorderRadius.circular(AppConfig.borderRadius / 2),
),
2022-10-15 11:11:36 +02:00
child: FutureBuilder<String>(
future: event.calcLocalizedBody(MatrixLocals(L10n.of(context)!)),
builder: (context, snapshot) {
return Text(
snapshot.data ??
event.calcLocalizedBodyFallback(
MatrixLocals(L10n.of(context)!),
),
2022-10-15 11:11:36 +02:00
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 14 * AppConfig.fontSizeFactor,
2022-10-15 11:11:36 +02:00
color: Theme.of(context).colorScheme.onSecondaryContainer,
decoration:
event.redacted ? TextDecoration.lineThrough : null,
),
2022-10-15 11:11:36 +02:00
);
}),
2020-01-03 11:57:00 +01:00
),
2020-01-01 19:10:13 +01:00
),
);
}
}