design: Fix color of invite button

This commit is contained in:
krille-chan 2024-04-18 09:42:14 +02:00
parent 2a590c6175
commit 3b71705d2e
No known key found for this signature in database

View file

@ -335,9 +335,12 @@ class ChatDetailsView extends StatelessWidget {
ListTile(
title: Text(L10n.of(context)!.inviteContact),
leading: CircleAvatar(
backgroundColor:
Theme.of(context).colorScheme.primary,
foregroundColor: Colors.white,
backgroundColor: Theme.of(context)
.colorScheme
.primaryContainer,
foregroundColor: Theme.of(context)
.colorScheme
.onPrimaryContainer,
radius: Avatar.defaultSize / 2,
child: const Icon(Icons.add_outlined),
),