flutter input bottom color
Container(
width: 290,
padding: EdgeInsets.all(10.0),
child : TextField(
autocorrect: true,
decoration: InputDecoration(
hintText: 'Type Text Here',
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(color: Colors.red),
),
focusedBorder: UnderlineInputBorder(
borderSide: BorderSide(color: Colors.green),
),
)
)
)