Skip to content

Instantly share code, notes, and snippets.

@marcinOz
Created June 10, 2020 18:50
Show Gist options
  • Save marcinOz/85661001b2c28b2ec9450456c57e7706 to your computer and use it in GitHub Desktop.
Save marcinOz/85661001b2c28b2ec9450456c57e7706 to your computer and use it in GitHub Desktop.
List<Widget> _avatars() => urls.mapIndexed((url, index) {
final padding = _spaceBetween * index;
return Positioned(
top: 0.0,
left: 0.0 + padding,
child: Avatar(
size: size,
imageUrl: url,
),
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment