mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
32 lines
760 B
Dart
32 lines
760 B
Dart
import 'package:bubble/bubble.dart';
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../message_content.dart';
|
|
|
|
class StateMessage extends StatelessWidget {
|
|
final Event event;
|
|
const StateMessage(this.event);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (event.type == EventTypes.Redaction) return Container();
|
|
return Padding(
|
|
padding: const EdgeInsets.only(
|
|
left: 8.0,
|
|
right: 8.0,
|
|
bottom: 8.0,
|
|
),
|
|
child: Opacity(
|
|
opacity: 0.5,
|
|
child: Bubble(
|
|
color: Colors.black,
|
|
elevation: 0,
|
|
alignment: Alignment.center,
|
|
child: MessageContent(event, textColor: Colors.white),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|