chore: Fix formatting

pull/1130/merge
Krille 1 year ago
parent 71ff94b622
commit 8ea9e26bac
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -236,7 +236,9 @@ class Message extends StatelessWidget {
if (!nextEventSameSender) if (!nextEventSameSender)
Padding( Padding(
padding: const EdgeInsets.only( padding: const EdgeInsets.only(
left: 8.0, bottom: 4), left: 8.0,
bottom: 4,
),
child: ownMessage || event.room.isDirectChat child: ownMessage || event.room.isDirectChat
? const SizedBox(height: 12) ? const SizedBox(height: 12)
: FutureBuilder<User?>( : FutureBuilder<User?>(
@ -315,8 +317,10 @@ class Message extends StatelessWidget {
FutureBuilder<Event?>( FutureBuilder<Event?>(
future: event future: event
.getReplyEvent(timeline), .getReplyEvent(timeline),
builder: (BuildContext context, builder: (
snapshot) { BuildContext context,
snapshot,
) {
final replyEvent = snapshot final replyEvent = snapshot
.hasData .hasData
? snapshot.data! ? snapshot.data!

Loading…
Cancel
Save