Search code examples
flutterflutter-layoutflutter-animation

What is the alternative to RecyclerView in Flutter?


What is the alternative to Recycle view in flutter I have tried using this code but how to do Animination with listview widget in flutter

Is this valid?

 ListView(
 children: <Widget>[
ListTile(
  leading: Icon(Icons.map),
  title: Text('Map'),
),
ListTile(
  leading: Icon(Icons.photo_album),
  title: Text('Album'),
),
ListTile(
  leading: Icon(Icons.phone),
  title: Text('Phone'),
  ),
 ],
);

Solution

  • You can also use animatedlist widget for animations. code example are given in the following link.

    AnimatedList