chore: remove margin from last entry in user activity summary list (#5115)
This commit is contained in:
parent
9efc40af31
commit
3666a3875d
1 changed files with 3 additions and 1 deletions
|
|
@ -163,7 +163,9 @@ class ButtonControlledCarouselView extends StatelessWidget {
|
|||
);
|
||||
return Container(
|
||||
width: cardWidth,
|
||||
margin: const EdgeInsets.only(right: 5.0),
|
||||
margin: i == userSummaries.length - 1
|
||||
? null
|
||||
: const EdgeInsets.only(right: 5.0),
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
decoration: ShapeDecoration(
|
||||
color: Color.alphaBlend(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue