Merge branch 'reactions-border-color' into 'master'

Set border color of not reacted reaction to secondary header color

Closes #141

See merge request ChristianPauly/fluffychat-flutter!143
This commit is contained in:
Christian Pauly 2020-09-07 09:36:11 +00:00
commit 169a2e8f90
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ class _Reaction extends StatelessWidget {
@override
Widget build(BuildContext context) {
final borderColor = reacted ? Colors.red : Theme.of(context).primaryColor;
final borderColor =
reacted ? Colors.red : Theme.of(context).secondaryHeaderColor;
final textColor = Theme.of(context).brightness == Brightness.dark
? Colors.white
: Colors.black;