-
SizeTransition + AnimatedList for tasks in flutter Task app (e004)
-
must run with :
AnimatedList(
key: _myListKey,
initialItemCount: tasks.length,
itemBuilder: (context, index, Animation<double> animation) =>
SizeTransition(
axis: Axis.vertical,
sizeFactor: animation,
child: TaskWidget(
taskOpj: tasks[index],
notifyParent: refresh,
),
),
),
