Answers for "flutter input bottom color"

0

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),
	   ),  
	  )
	)
  )
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language