zoukankan      html  css  js  c++  java
  • flutter TextField 外边框颜色

    Container(
                                  child: TextField(
                                    controller: activeCodeEditer,
                                    keyboardType: TextInputType.number,
                                    focusNode: _nodeText3,
    //                                style: TextStyle(fontSize: 14, color: Color(0xff9e51ff)),
                                    maxLength: 8,
                                    decoration: InputDecoration(
                                      hintText: '请输入激活码',
                                      counterText: "",
    //                                icon: Image.asset('assets/images/icons-login-mobile.png', height: 25),
                                      hintStyle: TextStyle(color: Color(0xff9e51ff)),
                                      contentPadding: EdgeInsets.only(left: 10,top: ScreenUtil().setHeight(10)),
                                      border: OutlineInputBorder(
                                          borderRadius: BorderRadius.circular(5.0),
                                          borderSide: BorderSide(color: Color(0xff9e51ff),), //这个不生效
                                      ),
                                      enabledBorder: OutlineInputBorder( //未选中时候的颜色
                                        borderRadius: BorderRadius.circular(5.0),
                                        borderSide: BorderSide(color: Color(0xff9e51ff),),
                                      ),
                                      focusedBorder: OutlineInputBorder( //选中时外边框颜色
                                        borderRadius: BorderRadius.circular(5.0),
                                        borderSide: BorderSide(color: Color(0xff9e51ff),),
                                      ),
    //                                  focusedBorder: UnderlineInputBorder(  //选中时下边框颜色 
    //                                    borderSide: BorderSide(color: Colors.red),
    //                                  ),
                                    ),
                                  ),
                                   ScreenUtil().setHeight(278),
                                  height: ScreenUtil().setHeight(67),
                                )
  • 相关阅读:
    JAVA中将字符串按某一分隔符分隔为多个字符…
    ArcGis Server 中 如何在Task中实现 下拉列…
    ADF setWhereClause()
    把时间当作朋友(二)
    0606放手
    HtmlTextWriter类的学习
    过年了...
    过年了...
    HTML在线编辑器控件
    CSS中的滑动门技术
  • 原文地址:https://www.cnblogs.com/wupeng88/p/12525335.html
Copyright © 2011-2022 走看看