[mob][photos] chore

This commit is contained in:
ashilkn
2025-01-22 16:55:08 +05:30
parent cea2f5b2df
commit e4ebdddb7f

View File

@@ -14,14 +14,14 @@ class AlbumSharesIcons extends StatelessWidget {
final Widget? trailingWidget;
const AlbumSharesIcons({
Key? key,
super.key,
required this.sharees,
this.type = AvatarType.tiny,
this.limitCountTo = 2,
this.removeBorder = true,
this.trailingWidget,
this.padding = const EdgeInsets.only(left: 10.0, top: 10, bottom: 10),
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -58,7 +58,7 @@ class AlbumSharesIcons extends StatelessWidget {
widgets.add(
Positioned(
left: (overlapPadding * (displayCount + (hasMore ? 1 : 0))) +
(displayCount > 0 ? 12 : 0),
(displayCount > 0 ? 12 : 0),
child: trailingWidget!,
),
);