i want to pass some data from one screen to another scrren
- first nanme
- lastname
- address
i want to pass some data from one screen to another scrren
There's many options to do that, for example a data class, like that,
class Data {
String firstname;
String lastname;
String email;
String address;
Data({this.firstname, this.lastname, this.email, this.address});
}
Now you declare and initialize the instance of the class,
final data = Data(firstname: 'Denzel', lastname: 'Washington', email: 'denzel@hollywood.com', address: 'unknow')
After that you can pass and retrieve to the pages.