Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created August 13, 2022 05:48
Show Gist options
  • Save nbnD/a05309a08d56a8246ccb2f08670448a4 to your computer and use it in GitHub Desktop.
Save nbnD/a05309a08d56a8246ccb2f08670448a4 to your computer and use it in GitHub Desktop.
Story view
RotationTransition(
turns: base,
child: DashedCircle(
gapSize: gap.value,
dashes: 20,
color: Theme.of(context).primaryColor,
child: RotationTransition(
turns: reverse,
child: Padding(
padding: const EdgeInsets.all(5.0),
child: CircleAvatar(
radius: 25.0,
backgroundImage:
NetworkImage(model[index]),
),
),
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment