In Flutter my Text Forms widget is not scrolling, same issue again.I tried adding SingleChildScrollView but it is not working`.
Please fix my isue I tried adding " body: SingleChildScrollView( ) but the total forms page is getting disappeared.
Following is my Widget code
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.all(8.0),
child: TextFormField(
decoration: InputDecoration(
hintText: hintText,
contentPadding: EdgeInsets.all(10.0),
border: InputBorder.none,
filled: true,
fillColor: Colors.grey[200],
),
validator: validator,
onSaved: onSaved,
keyboardType: isService ? TextInputType.streetAddress: TextInputType.text ,
),
);
}
}