1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| InputDecoration( isDense: true, contentPadding: EdgeInsets.only(left: 15, top: 12, bottom: 12), hintText: hintText, hintStyle: TextStyle( color: Colors.redAccent, ), filled: true, fillColor: Colors.tealAccent, helperText: helperText, prefixIcon: Icon(Icons.ac_unit), suffixIcon: Icon(Icons.cabin_rounded), enabledBorder: OutlineInputBorder( borderSide: BorderSide( color: Colors.amber, width: 1, ), ), focusedBorder: OutlineInputBorder( borderSide: BorderSide( color: Colors.blueAccent, width: 1, ), ), border: OutlineInputBorder( borderSide: BorderSide( color: Colors.limeAccent, width: 1, ), ), );
|