Answers for "list operations 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

dart list

-----Fixed Length List----
var list_name = [initial_size];

lst_name[index] = value;

----Growable List------
var list_name = [val1,val2,val3];
OR  
var list_name = []; 

list_name[index] = value;
Posted by: Guest on July-24-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language