fix StreamUserListTile to receive tileColor properly

the tileColor was not repassed to ListTile
This commit is contained in:
andrewsmedina
2023-06-12 20:04:43 -03:00
parent 535cd00a65
commit 8b10fe8451
@@ -157,6 +157,7 @@ class StreamUserListTile extends StatelessWidget {
trailing: selected ? selectedWidget : null, trailing: selected ? selectedWidget : null,
title: title, title: title,
subtitle: subtitle, subtitle: subtitle,
tileColor: tileColor,
); );
} }
} }