Skip to content

Instantly share code, notes, and snippets.

TextField(
enabled: true,
textAlign: TextAlign.start,
textAlignVertical: TextAlignVertical.center,
decoration: InputDecoration(
filled: true,
fillColor: Color.fromARGB(52, 158, 158, 158),
label: Text("search",
style: TextStyle(
fontSize: 15,
TextField(
enabled: true,
decoration: InputDecoration(
isDense: true,
hintText: "Enter Name",
label: Text("Name"),
),
),
TextField(
enabled: true,
decoration: InputDecoration(
contentPadding: EdgeInsets.all(15),
hintText: "Enter Name",
label: Text("Name"),
),
),
TextField(
decoration: InputDecoration(
),