• 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),
                                )
  • 相关阅读:
    计算机网络常见面试题
    字节跳动2022秋招提前批来了!!!
    IBM Watson Studio
    Git提交GitHub
    python获取股票和基金等数据
    Cloud Foundry
    微软亚洲研究院的NLP一例
    Streamlit的学习小记
    在线学习云技术相关等
    IBM云部署相关
  • 原文地址:https://www.cnblogs.com/wupeng88/p/12525335.html
Copyright © 2020-2023  润新知