Skip to content

Instantly share code, notes, and snippets.

@flutter-devs
Created June 14, 2019 12:03
Show Gist options
  • Save flutter-devs/33df4af5be42b43b15ba9edd01501e0f to your computer and use it in GitHub Desktop.
Save flutter-devs/33df4af5be42b43b15ba9edd01501e0f to your computer and use it in GitHub Desktop.
Animation transformAnimation = BorderRadiusTween(
begin: BorderRadius.circular(125.0),
end: BorderRadius.circular(0.0).animate(type_of_animation);
/////////////// OR ///////////////
Animation transformAnimation = Tween<BorderRadius>(
begin: BorderRadius.circular(125.0),
end: BorderRadius.circular(0.0).animate(type_of_animation);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment