Skip to content

Instantly share code, notes, and snippets.

@Nash0x7E2
Created September 27, 2018 00:11
Show Gist options
  • Save Nash0x7E2/b1912c4b3e757b080a5c6d3f7ee0268b to your computer and use it in GitHub Desktop.
Save Nash0x7E2/b1912c4b3e757b080a5c6d3f7ee0268b to your computer and use it in GitHub Desktop.
const AnimatedList({
Key key,
@required this.itemBuilder,
this.initialItemCount = 0,
this.scrollDirection = Axis.vertical,
this.reverse = false,
this.controller,
this.primary,
this.physics,
this.shrinkWrap = false,
this.padding,
}) : assert(itemBuilder != null),
assert(initialItemCount != null && initialItemCount >= 0),
super(key: key);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment