我的编程空间,编程开发者的网络收藏夹
学习永远不晚

flutter怎么封装点击菜单工具栏组件checkBox多选版

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

flutter怎么封装点击菜单工具栏组件checkBox多选版

这篇“flutter怎么封装点击菜单工具栏组件checkBox多选版”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“flutter怎么封装点击菜单工具栏组件checkBox多选版”文章吧。

效果展示

单选版可看上篇博文 用flutter封装一个点击菜单工具栏组件

本文是CHeckbox多选版

效果如图所示,点击选项回调选中的index和是否选中的值,可以自定义横向纵向,传递宽高后自动计算子项宽高,自定义边框、背景、选中的样式

flutter怎么封装点击菜单工具栏组件checkBox多选版

实现代码

第一部分是封装子项组件, ToolMenuCheckboxItemWidget组件如下:

import 'dart:core';import 'package:flutter/material.dart';/// @author 编程小龙/// @创建时间:2022/3/8/// 工具菜单checkbox版子项class ToolMenuCheckboxItemWidget extends StatelessWidget {  /// 显示的title  final String title;  /// 序号  final int index;  /// 点击回调  final void Function(int, bool) click;  final double width;  final double height;  final bool isActive;  final bool isHorizontal; // 是否横向  final bool isEnd; // 是否为末尾  final Color? activeColor; // 点击后的颜色 没传取主题色  final Color? backgroundColor; // 背景色  final Color? borderColor; // 边框色  final TextStyle? textStyle; // 文字样式  final TextStyle? activeTextStyle; //  选中的文字样式  const ToolMenuCheckboxItemWidget(      {Key? key,      this.isActive = false,      required this.title,      required this.index,      required this.click,      this.isHorizontal = false,      this.width = 100,      this.isEnd = false,      this.height = 40,      this.activeColor,      this.backgroundColor,      this.borderColor,      this.textStyle,      this.activeTextStyle})      : super(key: key);  @override  Widget build(BuildContext context) {    TextStyle defaultTextStyle = TextStyle(        fontSize: 16, color: isActive ? Colors.white : Colors.black87);    return Material(      child: Ink( // 点击右波纹效果        width: width,        height: height,        decoration: BoxDecoration(            color: isActive                ? activeColor ?? Theme.of(context).primaryColor                : backgroundColor ?? Colors.white30,            border: isHorizontal                ? isEnd                ? const Border()                : Border(                right: BorderSide(                    width: 1, color: borderColor ?? Colors.grey))                : Border(                bottom: BorderSide(                    width: 1, color: borderColor ?? Colors.grey))),        child: InkWell(            onTap: () {              click(index,!isActive);            },            child: Center(              child: Text(title,                  style: isActive                      ? activeTextStyle ?? defaultTextStyle                      : textStyle ?? defaultTextStyle),            )),      ),    );  }}

第二部分是封装菜单内容,ToolMenuCheckBoxWidget代码如下

import 'package:demo/widgets/tool_menu_checkbox_item_widget.dart';import 'package:flutter/material.dart';/// @author 编程小龙/// @创建时间:2022/3/8/// 工具菜单checkbox版class ToolMenuCheckBoxWidget extends StatefulWidget {  final Map<String, bool> items; // title:checked 的形式 返回值为 key:true/false  final void Function(int, bool) click; // 点击回调 返回第n个的选中情况  final double? width;  final double? height;  final bool isHorizontal; // 横向  final Color? activeColor; // 点击后的颜色 没传取主题色  final Color? backgroundColor; // 背景色  final Color? borderColor; // 边框色  final TextStyle? textStyle; // 文字样式  final TextStyle? activeTextStyle; //  选中的文字样式  const ToolMenuCheckBoxWidget(      {Key? key,      required this.items,      required this.click,      this.width,      this.height,      this.isHorizontal = false,      this.activeColor,      this.backgroundColor,      this.borderColor,      this.textStyle,      this.activeTextStyle})      : super(key: key);  @override  State<ToolMenuCheckBoxWidget> createState() => _ToolMenuCheckBoxWidgetState();}class _ToolMenuCheckBoxWidgetState extends State<ToolMenuCheckBoxWidget> {  late Map<String, bool> items;  bool isHorizontal = false; // 是否横向  @override  void initState() {    // 初始化当前选中    items = widget.items;    isHorizontal = widget.isHorizontal;    super.initState();  }  @override  Widget build(BuildContext context) {    int index = 0; // 遍历自增 index    int size = widget.items.length;    double height = widget.height ?? (isHorizontal ? 50 : 200); // 设置水平和竖直时的默认值    double width = widget.width ?? (isHorizontal ? 400 : 100);    return Container(      height: height,      width: width,      decoration: BoxDecoration(        color: widget.backgroundColor ?? Colors.white30,        border: Border.all(color: widget.borderColor ?? Colors.grey, width: 1),      ),      child: Wrap(        children: items.keys.map((key) {          return ToolMenuCheckboxItemWidget(            title: key,            index: index,            isHorizontal: widget.isHorizontal,            click: (index, isChecked) {              setState(() {                items[key] = isChecked;              });              widget.click(index, isChecked);            },            height:                widget.isHorizontal ? height - 2 : height / size,            isActive: items[key] ?? false,            width: widget.isHorizontal ? width / size - 1 : width,            isEnd: index++ == size - 1,            textStyle: widget.textStyle,            activeTextStyle: widget.activeTextStyle,            backgroundColor: widget.backgroundColor,            activeColor: widget.activeColor,            borderColor: widget.borderColor,          );        }).toList(),      ),    );  }}

代码调用

最简单案例只需传入titles即可,选中颜色默认取主题颜色,后续再弄一个chekbox版的,可多选菜单

/// 竖向ToolMenuCheckBoxWidget(    items: { // 注意这里map不要用const声明,因为里面的值传递过去会同步更改,并不会重新copy一份值操作      "选项1": true,      "选项2": true,      "选项3": false,      "选项4": false    },    click: (index, isActive) {      print("竖向 选项$index 的值为$isActive");    }),/// 自定义样式横向ToolMenuCheckBoxWidget(items: { // 注意这里map不要用const声明,因为里面的值传递过去会同步更改,并不会重新copy一份值操作    "选项1": true,    "选项2": false,    "选项3": false,    "选项4": true,    "选项5": false,    "选项6": false,  },  click: (index, isActive) {    print("横向 选项$index 的值为$isActive");  },  isHorizontal: true,  activeColor: Colors.green,  backgroundColor: Colors.black,  textStyle: const TextStyle(color: Colors.white),  activeTextStyle:  const TextStyle(color: Colors.white, fontSize: 18),  borderColor: Colors.orange,),

以上就是关于“flutter怎么封装点击菜单工具栏组件checkBox多选版”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

flutter怎么封装点击菜单工具栏组件checkBox多选版

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

flutter怎么封装点击菜单工具栏组件checkBox多选版

这篇“flutter怎么封装点击菜单工具栏组件checkBox多选版”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“flutt
2023-06-30

flutter怎么封装单选点击菜单工具栏组件

这篇“flutter怎么封装单选点击菜单工具栏组件”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“flutter怎么封装单选点
2023-06-30

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录