Improve tap are for view all

Signed-off-by: Neeraj Gupta <254676+ua741@users.noreply.github.com>
This commit is contained in:
Neeraj Gupta 2023-07-04 11:11:41 +05:30
parent accf4e5533
commit 1284e50c4f

View file

@ -199,14 +199,18 @@ class _UserCollectionsTabState extends State<UserCollectionsTab>
), ),
); );
}, },
child: SectionOptions( child: Container(
SectionTitle( // The container is needed to make the whole row clickable
title: S.of(context).viewAll, color: Colors.transparent,
mutedTitle: true, child: SectionOptions(
), SectionTitle(
trailingWidget: const IconButtonWidget( title: S.of(context).viewAll,
icon: Icons.chevron_right, mutedTitle: true,
iconButtonType: IconButtonType.secondary, ),
trailingWidget: const IconButtonWidget(
icon: Icons.chevron_right,
iconButtonType: IconButtonType.secondary,
),
), ),
), ),
) )