IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Flutter学习-自定义搜索栏组件(非AppBar) -> 正文阅读

[移动开发]Flutter学习-自定义搜索栏组件(非AppBar)

参数说明

参数默认值说明
height50.0搜索栏高度
hintText搜索搜索栏初始提示
backgroundColorColors.white背景色
fontSize18文字大小
fontColorColors.black文字颜色
onSearch左侧搜索按钮回调函数
onIcon右侧图标按钮回调函数
rightIconIcons.flip右侧图标

使用参考

// 使用悬浮层悬浮在正常页面,列表中预留组件高度
Center(
  child:ConstrainedBox( //约束盒子
    constraints: BoxConstraints.expand(),//不指定高和宽时则铺满整个屏慕
    child: Stack(
      alignment:Alignment.center , //指定对齐方式为居中
      children: <Widget>[ //子组件列表
        ListView(children: [SizedBox(height: 50,),],),
        Positioned(
          top: 0.0,//距离顶部18px(在中轴线上,因为Stack摆放在正中间)
          child: MySearchFence(
            onSearch:(value){print(value);},// 回调函数传值
            rightIcon: Icons.flip,
            onIcon:(value){print(value);},// 回调函数传值
          ),
        ),
      ],
    ),
  ),
)

效果图

搜索栏代码

import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';

class MySearchFence extends StatefulWidget {
  // 传入参数
  const MySearchFence({
    Key? key,
    this.height: 50.0, // 搜索栏高度
    this.hintText: '搜索', // 搜索栏初始提示
    this.backgroundColor: Colors.white,// 背景色
    this.fontSize: 18,// 文字大小
    this.fontColor: Colors.black,// 文字颜色
    required this.onSearch, // 左侧搜索按钮回调函数
    required this.onIcon,// 右侧图标按钮回调函数
    this.rightIcon: Icons.flip,// 右侧图标
  }) : super(key: key,);
  final double height;
  final String hintText;
  final Color backgroundColor;
  final double fontSize;
  final Color fontColor;
  final ValueChanged<String> onSearch;
  final ValueChanged<String> onIcon;
  final IconData rightIcon;
  @override
  State<StatefulWidget> createState() => MySearchFenceState();
}

// 监听值变化绑定函数
void _textFieldChanged(String str) {
  print(str);
}

// 构建
class MySearchFenceState extends State<MySearchFence> {
  TextEditingController value = TextEditingController();
  @override
  Widget build(BuildContext context) {
    return SizedBox(
      width: MediaQuery.of(context).size.width,// 宽度全屏
      height: widget.height,// 传入高度
      child: Container(
        padding: EdgeInsets.fromLTRB(13, 0, 10, 0),
        decoration: BoxDecoration(
          color: widget.backgroundColor,// 传入背景色
          borderRadius: BorderRadius.all(Radius.circular(0)),
        ),
        child:
        Row(
          children: [
            // 左侧搜索按钮
            SizedBox(
              height: 26,
              width: 26,
              child: TextButton(
                  style: ButtonStyle(
                    foregroundColor: MaterialStateProperty.all(Color.fromARGB(255, 53, 53, 53)),
                    minimumSize: MaterialStateProperty.all(Size(10, 5)),
                    padding: MaterialStateProperty.all(EdgeInsets.zero),
                  ),
                  onPressed: (){widget.onSearch(value.text);},// 回调函数
                  child: new Row(
                    children: [
                      new Icon(Icons.search,color: Colors.black38,),
                    ],
                  )
              ),
            ),
            // 中间搜索框
            SizedBox(
              height: widget.height,
              width: MediaQuery.of(context).size.width-75,
              child: TextField(
                controller: value,
                style: TextStyle(color: widget.fontColor,fontSize: widget.fontSize),
                keyboardType: TextInputType.text,
                decoration: InputDecoration(
                  suffixIcon: IconButton(
                    onPressed: () {value.clear();},
                    icon: Icon(Icons.cancel, color: Colors.black38,size: 18,)
                  ),
                  contentPadding: EdgeInsets.all(10.0),
                  hintText: widget.hintText,
                  border: InputBorder.none,
                ),
                autofocus: false,
                // onChanged: _textFieldChanged,
              )
            ),
            // 右侧自定义图标按钮
            SizedBox(
              height: 26,
              width: 26,
              child: TextButton(
                style: ButtonStyle(
                  foregroundColor: MaterialStateProperty.all(Color.fromARGB(255, 53, 53, 53)),
                  minimumSize: MaterialStateProperty.all(Size(10, 5)),
                  padding: MaterialStateProperty.all(EdgeInsets.zero),
                ),
                onPressed: (){widget.onIcon(value.text);},
                child: new Row(
                  children: [
                   new Icon(widget.rightIcon,color: Colors.black38,),
                  ],
                )
              ),
            )
          ],
        )
      )
    );
  }

}
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:42:07  更:2022-03-24 00:43:42 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 20:04:35-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码