Created
June 10, 2020 18:50
-
-
Save marcinOz/85661001b2c28b2ec9450456c57e7706 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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