Flutter TextField 去掉下划线

TextField 默认自带下划线, 然鹅现在UI设计一般做无边框输入框,通过简单设置decoration去掉下划线

border: InputBorder.none,

TextField(
    style: TextStyle(color: Colors.white, fontSize: 16.0),
    decoration: InputDecoration(
        border: InputBorder.none,
        hintText: '输入提示占位字符',
        hintStyle: TextStyle(color: Colors.white.withOpacity(0.5), fontSize: 16.0)),
 )

你可能感兴趣的:(Flutter TextField 去掉下划线)