Answers for "flutter change cell padding"

2

change padding in text field flutter

decoration: InputDecoration(
				contentPadding: const EdgeInsets.all(12), isDense: true,
			)
Posted by: Guest on March-25-2021
1

flutter column padding

Padding(
  padding: const EdgeInsets.all(8.0),
  child: Text("text"), // here place whathever child you want
);
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language