Viandsyahrezah
Viandsyahrezah

Reputation: 29

How to save text to json

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

Answers (1)

Alex Shinkevich
Alex Shinkevich

Reputation: 357

 final json = {
    'name': name.text,
    'nohap': nohap.text,
    'tinggi': tinggi.text,
  };

Upvotes: 1

Related Questions