Flutter   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了dart – 如何在flutter中创建工具栏搜索视图大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在我的app工具栏中实现searchview来实现列表视图列表过滤器.像下面的图像,我搜索很多仍然没有得到正确的答案.任何帮助将不胜感激,谢谢你提前

dart – 如何在flutter中创建工具栏搜索视图

解决方法

只需用户点击图标,您就需要在状态之间切换.除了一点点重构代码清理之外,这个简单的例子可以让你前进.

dart – 如何在flutter中创建工具栏搜索视图

class SearchAppBar extends StatefulWidget {
  @override
  _SearchAppBarState createState() => new _SearchAppBarState();
}

class _SearchAppBarState extends State<SearchAppBar> {
  Widget appBartitle = new Text("AppBar title");
  Icon actionIcon = new Icon(Icons.search);
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        centertitle: true,title:appBartitle,actions: <Widget>[
          new IconButton(icon: actionIcon,onPressed:(){
          setState(() {
                     if ( this.actionIcon.icon == Icons.search){
                      this.actionIcon = new Icon(Icons.closE);
                      this.appBartitle = new TextField(
                        style: new TextStyle(
                          color: Colors.white,),decoration: new InputDecoration(
                          prefixIcon: new Icon(Icons.search,color: Colors.whitE),hintText: "Search...",hintStyle: new TextStyle(color: Colors.whitE)
                        ),);}
                      else {
                        this.actionIcon = new Icon(Icons.search);
                        this.appBartitle = new Text("AppBar title");
                      }


                    });
        },]
      ),);
  }
}

大佬总结

以上是大佬教程为你收集整理的dart – 如何在flutter中创建工具栏搜索视图全部内容,希望文章能够帮你解决dart – 如何在flutter中创建工具栏搜索视图所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。