How to send text fields data from list to another screen in flutter

0

if I have so many text field from list and all of them in list View builder now how to send selected fields data to another screen in flutter

flutter
2021-11-24 06:26:31
1

0

First Screen,pass data in Navigator:

Navigator.push(
            context,
            MaterialPageRoute(builder: (context) =>secondscreen('value')),
          );

in Second Screen:

class secondscreen extends StatefulWidget {
  secondscreen(this.uid);  
  final uid;
  @override
  secondscreenstate createState() => secondscreenstate (this.uid);
}

class secondscreenstate extends State<secondscreen> {
 
  var uid; //where uid will carry the value from first screen
  secondscreenstate (this.uid);
.......

}
2021-11-24 06:53:50

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................