2
I have an application in flutter that has a form and that the data is sent to a class, however, I have a specific screen that needs to recover a class data in which I sent, but when I recover the variable returns null.
Sending of the Data:
Especialidade VarEspecialidade = new Especialidade();
VarEspecialidade.VariavelEspecialidade = DadosLista[index];
Class receiving the data:
class Especialidade {
String VariavelEspecialidade;
Especialidade({this.VariavelEspecialidade});
}
Screen I call the dice:
class _Layout_Conclusao extends State<Layout_Conclusao>{
Especialidade VarEspecialidade = new Especialidade();
String Dados;
@override
void initState(){
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Conclusão'),
centerTitle: true,
elevation: 0,
),
body: Text(VarEspecialidade.VariavelEspecialidade.toString())
);
}
}