skip to Main Content

I'm using listView but the Too many positional arguments: 0 expected, but 1 found. keep occuring at //1 . i'm beginner in flutter

Center( //1 child: ListView( children:const [ ListTile( leading: Icon(Icons.map), title: Text('map'), ), ListTile( leading: Icon(Icons.phone), title: Text('phone'), ), ListTile( leading: Icon(Icons.photo_album), title: Text('album'), ), ], ), ), Please explain me why this error has occured.This is the error Too many…

VIEW QUESTION

Custom animated progress bar flutter

How can I make a multicolor custom progress bar with animation? I have three values ​​that determine the length of each color. Animation trigger when app started. I've tried make it with SizeAnimation just to expand colored container but it…

VIEW QUESTION
Back To Top
Search