美文网首页
flutter_搜索框

flutter_搜索框

作者: 想放假的程序媛 | 来源:发表于2019-07-23 15:22 被阅读0次

import 'package:flutter/material.dart';

import 'package:flutter_screenutil/flutter_screenutil.dart';

class TextFieldWidgetextends StatelessWidget {

Widget buildTextField() {

// theme设置局部主题

    return Theme(

data:new ThemeData(primaryColor: Colors.grey),

child:Container(

padding:EdgeInsets.only(top:5.0,left:5.0),

decoration:BoxDecoration(

color: Colors.white,

border:Border(

bottom:BorderSide(width:1.0, color: Colors.black12),

top:BorderSide(width:1.0, color: Colors.black12),

right:BorderSide(width:1.0, color: Colors.black12),

left:BorderSide(width:1.0, color: Colors.black12),

)),

child:TextField(

cursorColor: Colors.grey,// 光标颜色

// 默认设置

            decoration:InputDecoration(

contentPadding:const EdgeInsets.symmetric(vertical:10.0),

border: InputBorder.none,

icon:Icon(Icons.search),

hintText:"搜索文件",

hintStyle:new TextStyle(

fontSize:14, color:Color.fromARGB(50,0,0,0))),

style:new TextStyle(fontSize:14, color: Colors.black),

),

));

}

@override

  Widget build(BuildContext context) {

return Container(

// 修饰搜索框, 白色背景与圆角

      decoration:new BoxDecoration(

color: Colors.white,

borderRadius:new BorderRadius.all(new Radius.circular(5.0)),

),

alignment: Alignment.center,

height:ScreenUtil().setHeight(120),

padding:EdgeInsets.fromLTRB(0.0,0.0,0.0,0.0),

child: buildTextField(),

);

}

}


参考链接:https://blog.csdn.net/weixin_34233679/article/details/87016303

相关文章

  • flutter_搜索框

    参考链接:https://blog.csdn.net/weixin_34233679/article/detail...

  • 搜索框控制器问题总结

    最简易的搜索框控制器 设置搜索框uisearchBar的背景色 设置搜索框弹出的背景色 去掉搜索框的黑线 修改光标颜色

  • 子类控件-快捷代码

    按钮 搜索框 点击跳转 搜索框 点击搜索 KVO 保存图片 判断viewLoad是否加载 for 循环

  • 搜索框

    #import "RootViewController.h" //编辑搜索框需要遵守两个协议: //UISearc...

  • 搜索框

    来一张效果图看看,在这里不能传视频,(鼠标放置时,搜索框变长,背景颜色改变): 先来看一下HTML代码,很简单,就...

  • 搜索框

    https://my.oschina.net/u/2340880/blog/509756 (搜索框的详细属性方法)...

  • 搜索框

    使用type=search的元素 在元素内,使用appearance:none 使用伪元素,去掉不必要的样式 以上...

  • 搜索框

    最近自己在写一个APP,其中需要实现搜索框搜索功能,于是乎就想写篇博客介绍下UISearchController和...

  • 搜索框

  • 搜索框

    要实现一个搜索功能,筛选功能。用系统自带的UISearchController有一些问题,不够灵活, 所以使用自定...

网友评论

      本文标题:flutter_搜索框

      本文链接:https://www.haomeiwen.com/subject/aexalctx.html