Move notify button to the left

This commit is contained in:
Christian Pauly 2020-03-13 20:29:50 +01:00
parent 64b8441649
commit 3b574b047f
1 changed files with 6 additions and 8 deletions

View File

@ -139,14 +139,12 @@ class ChatListItem extends StatelessWidget {
leading: Avatar(room.avatar, room.displayname), leading: Avatar(room.avatar, room.displayname),
title: Row( title: Row(
children: <Widget>[ children: <Widget>[
Expanded( Text(
child: Text( room.getLocalizedDisplayname(context),
room.getLocalizedDisplayname(context), maxLines: 1,
maxLines: 1, overflow: TextOverflow.ellipsis,
overflow: TextOverflow.ellipsis,
),
), ),
SizedBox(width: 16), SizedBox(width: 4),
room.pushRuleState == PushRuleState.notify room.pushRuleState == PushRuleState.notify
? Container() ? Container()
: Icon( : Icon(
@ -154,7 +152,7 @@ class ChatListItem extends StatelessWidget {
color: Colors.grey[400], color: Colors.grey[400],
size: 16, size: 16,
), ),
SizedBox(width: 4), Spacer(),
Text( Text(
room.timeCreated.localizedTimeShort(context), room.timeCreated.localizedTimeShort(context),
style: TextStyle( style: TextStyle(