Answers for "using list in flutter"

0

list in dart

main(List<String> args) {
  //Syntax : List<ValuesDataType> ListName = [Values]
  List<int> x = [10, 20, 30, 50, 70, 90];

  //? printing specific value : print (ListNameHere[ItsArrangeStartFrom0]);
  //! example
  print(x[0]);

  //? printing the whole list : print (ListName)
  print(x);

  //? calculate list values :
  //! example 
  print(x[0] * x[5]);

  //? to add a new value to the list use <ListName>.add(Value);
  //! example 
  x.add(155);
}
Posted by: Guest on August-06-2021
1

list widget flutter

ListView(
  padding: const EdgeInsets.all(8),
  children: <Widget>[
    Container(
      height: 50,
      color: Colors.amber[600],
      child: const Center(child: Text('Entry A')),
    ),
    Container(
      height: 50,
      color: Colors.amber[500],
      child: const Center(child: Text('Entry B')),
    ),
    Container(
      height: 50,
      color: Colors.amber[100],
      child: const Center(child: Text('Entry C')),
    ),
  ],
)
Posted by: Guest on March-28-2020
-1

add list fromflutter

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'),
    ),
  ],
);
Posted by: Guest on November-21-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language