Здесь я упомянул свой код флажка.Я новичок, чтобы трепетать, поэтому я должен реализовать его для функции Запомнить меня.
Код:
Container(
padding: EdgeInsets.all(10.0),
child: Column(
children: <Widget>[
new Checkbox(value: checkBoxValue,
activeColor: Colors.green,
onChanged:(bool newValue){
setState(() {
checkBoxValue = newValue;
});
Text('Remember me');
}),
],
),
);