AnimatedGrid<T> constructor
const
AnimatedGrid<T> ({})
An animated grid the animates when the items change sort.
Implementation
const AnimatedGrid({
Key? key,
required this.itemHeight,
required this.items,
required this.keyBuilder,
required this.builder,
this.padding = 8,
this.columns = 2,
this.duration = const Duration(milliseconds: 500),
this.curve = Curves.elasticOut,
}) : super(key: key);