我是新手,我希望将用户详细信息名称,地址,移动电话号码,电子邮件等数据传递到另一个屏幕,您能告诉我如何执行此操作吗?

时间:2019-07-18 12:54:54

标签: flutter

我想将一些数据从一个屏幕传递到另一个屏幕

  1. 第一名
  2. 姓氏
  3. 电子邮件
  4. 地址

1 个答案:

答案 0 :(得分:0)

有很多方法可以做到这一点,例如,像这样的数据类,

class Data {
  String firstname;
  String lastname;
  String email;
  String address;

  Data({this.firstname, this.lastname, this.email, this.address});
}

现在,您声明并初始化该类的实例,

  final data = Data(firstname: 'Denzel', lastname: 'Washington', email: 'denzel@hollywood.com', address: 'unknow')

之后,您可以传递并检索到页面。