Reputation: 29
i want to save text to json. this my code.
TextEditingController name = TextEditingController();
TextEditingController nohap = TextEditingController();
TextEditingController tinggi = TextEditingController();
here text field.
TextFormField(
controller: nohap,
keyboardType: TextInputType.phone,
autofocus: false,
decoration: InputDecoration(
hintText: 'Nomor Handphone',
contentPadding: EdgeInsets.all(16.0),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(32.0)),
),
),
please helpme.
Upvotes: 0
Views: 122
Reputation: 357
final json = {
'name': name.text,
'nohap': nohap.text,
'tinggi': tinggi.text,
};
Upvotes: 1