Stack(children: <Widget>[// Stroked text as border.Text('Test Text~',style: TextStyle(fontSize:40,foreground: Paint()..style = PaintingStyle.stroke..strokeWidth =6..color = Colors.blue[700],),),// Solid text as fill.Text('Test Text~',style: TextStyle(fontSize:40,color: Colors.gr...
在TextField的decoration属性中使用InputDecoration来定义装饰样式: 代码语言:txt 复制 TextField( decoration: InputDecoration( border: OutlineInputBorder( borderSide: BorderSide(color: Colors.red), // 设置边框颜色 ), ), ) 在上述代码中,我们通过border属性设置了一个带有红色边框的OutlineInputBorder,...
textColor文本颜色@param textBorderColor文本边框颜色@param strokeWidth 文件边框宽度 @return...文本*/ +(NSMutableAttributedString *)textHollow:(NSString *)str textColor:(UIColor *)textColor textBorderColor...0f",progress] textColor:_progressColor textBorderColor:[UIColor lightGrayColor] strokeWidth:-...
decoration: InputDecoration( hintText: "请填写您宝贵的意见", border: OutlineInputBorder( borderRadius: BorderRadius.circular(5.0), borderSide: BorderSide()), ), obscureText: false, //是否是密码 cursorColor: Colors.red, //光标颜色 //内容改变的回调 onChanged: (text) { print('change $text'...
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( ...
TextField( decoration: InputDecoration( filled: true, fillColor: Colors.grey[200]!, // 设置填充颜色 enabled: true, labelText: 'Filled TextField', prefixIcon: Icon( Icons.account_circle, color: Colors.blue, // 可以作为“边框”颜色的一部分 ), border: InputBorder.none, // 隐藏默认的边框 ...
borderSide: BorderSide( color: Colors.grey[200], ), ); TextField( controller: _inputController,//控制器 focusNode: _inputFocusNode,//焦点 style: TextStyle(fontSize: 16, color: Colors.black87),//文字大小、颜色 maxLines: 10,//最多多少行 ...
borderRadius: BorderRadius.all(Radius.circular(10)), ///用来配置边框的样式 borderSide: BorderSide( ///设置边框的颜色 color: Colors.red, ///设置边框的粗细 width: 2.0, ), ), ///设置输入框可编辑时的边框样式 enabledBorder: OutlineInputBorder( ///设置边框四个角的弧度 borderRadius: Border...
通过修改 enabledBorder 和 focusedBorder 可以调整边框在选中和失焦时的颜色 child:TextField(controller:pwdController,obscureText:true,decoration:InputDecoration(hintText:'请输入验证码',prefixIcon:Icon(Icons.lock),enabledBorder:UnderlineInputBorder(borderSide:BorderSide(color:Colors.orange),),focusedBorder:Und...
在Flutter中,可以使用Border类来设置边框样式,并通过borderColor属性来指定边框颜色。下面是一个示例代码: 代码语言:txt 复制 Container( width: 200, height: 100, decoration: BoxDecoration( border: Border.all( color: Colors.blue, // 设置边框颜色为蓝色 width: 2, // 设置边框宽度为2 ), ), ) 在上面...