chore: Follow up fix listtile select color
This commit is contained in:
parent
916f6536a7
commit
3c0cf0d270
1 changed files with 155 additions and 151 deletions
|
|
@ -155,11 +155,14 @@ class ChatListItem extends StatelessWidget {
|
||||||
? 20.0
|
? 20.0
|
||||||
: 14.0
|
: 14.0
|
||||||
: 0.0;
|
: 0.0;
|
||||||
return ListTile(
|
return Material(
|
||||||
selected: selected || activeChat,
|
color: selected
|
||||||
selectedTileColor: selected
|
|
||||||
? Theme.of(context).primaryColor.withAlpha(100)
|
? Theme.of(context).primaryColor.withAlpha(100)
|
||||||
: Theme.of(context).secondaryHeaderColor,
|
: activeChat
|
||||||
|
? Theme.of(context).secondaryHeaderColor
|
||||||
|
: Colors.transparent,
|
||||||
|
child: ListTile(
|
||||||
|
selected: selected || activeChat,
|
||||||
onLongPress: onLongPress as void Function()?,
|
onLongPress: onLongPress as void Function()?,
|
||||||
leading: selected
|
leading: selected
|
||||||
? SizedBox(
|
? SizedBox(
|
||||||
|
|
@ -321,6 +324,7 @@ class ChatListItem extends StatelessWidget {
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
onTap: () => clickAction(context),
|
onTap: () => clickAction(context),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue