Move notify button to the left
This commit is contained in:
parent
64b8441649
commit
3b574b047f
|
@ -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: 4),
|
||||||
SizedBox(width: 16),
|
|
||||||
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(
|
||||||
|
|
Loading…
Reference in a new issue