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