老师,开发自定义搜索框的时候的问题
来源:13-3 基于TextField实现顶部SearchBar-2【封装组件出神入化】
weixin_慕后端0013590
2020-04-21
这里的container设置高度的话,里面的TextField就剧中不了了,不设置的话就是居中的,但是又太宽了
写回答
1回答
-
CrazyCodeBoy
2020-04-21
参考下:https://git.imooc.com/coding-321/flutter_trip/src/master/lib/widget/search_bar.dart#L160
TextField( controller: _controller, onChanged: _onChanged, autofocus: true, style: TextStyle( fontSize: 18.0, color: Colors.black, fontWeight: FontWeight.w300), //输入文本的样式 decoration: InputDecoration( contentPadding: //flutter sdk >= v1.12.1 输入框样式适配 EdgeInsets.only(left: 5, bottom: 12, right: 5), border: InputBorder.none, hintText: widget.hint ?? '', hintStyle: TextStyle(fontSize: 15), ))
10
相似问题