TextField 默認(rèn)自帶下劃線, 然鵝現(xiàn)在UI設(shè)計一般做無邊框輸入框,通過簡單設(shè)置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)),
)