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'),
  ),
 ],
);
 
     
     
     
    