chore: Minor design changes

This commit is contained in:
Krille Fear 2021-11-22 15:35:51 +01:00
parent 2988d6f0b5
commit 676a5069dc
2 changed files with 13 additions and 13 deletions

View File

@ -44,15 +44,6 @@ class MessageReactions extends StatelessWidget {
final reactionList = reactionMap.values.toList();
reactionList.sort((a, b) => b.count - a.count > 0 ? 1 : -1);
return Wrap(spacing: 4.0, runSpacing: 4.0, children: [
if (allReactionEvents.any((e) => e.status.isSending))
const SizedBox(
width: 28,
height: 28,
child: Padding(
padding: EdgeInsets.all(4.0),
child: CircularProgressIndicator.adaptive(strokeWidth: 1),
),
),
...reactionList
.map(
(r) => _Reaction(
@ -86,6 +77,15 @@ class MessageReactions extends StatelessWidget {
),
)
.toList(),
if (allReactionEvents.any((e) => e.status.isSending))
const SizedBox(
width: 28,
height: 28,
child: Padding(
padding: EdgeInsets.all(4.0),
child: CircularProgressIndicator.adaptive(strokeWidth: 1),
),
),
]);
}
}

View File

@ -33,8 +33,8 @@ class TypingIndicators extends StatelessWidget {
: Alignment.topLeft,
clipBehavior: Clip.hardEdge,
decoration: const BoxDecoration(),
padding: EdgeInsets.only(
left: typingUsers.length < 2 ? 8 : 0,
padding: const EdgeInsets.only(
left: 8.0,
bottom: bottomPadding,
),
child: Row(
@ -43,7 +43,7 @@ class TypingIndicators extends StatelessWidget {
height: Avatar.defaultSize,
width: typingUsers.length < 2
? Avatar.defaultSize
: Avatar.defaultSize + 8,
: Avatar.defaultSize + 16,
child: Stack(
children: [
if (typingUsers.isNotEmpty)
@ -53,7 +53,7 @@ class TypingIndicators extends StatelessWidget {
),
if (typingUsers.length == 2)
Padding(
padding: const EdgeInsets.only(left: 8),
padding: const EdgeInsets.only(left: 16),
child: Avatar(
mxContent: typingUsers.length == 2
? typingUsers.last.avatarUrl