flutter 实现表单的封装包含下拉框和输入框

一、表单封装组件实现效果

在这里插入图片描述

//表单组件
Widget buildFormWidget(List<InputModel> formList,{required GlobalKey<FormState> formKey}) {return Form(key: formKey,child: Column(children: formList.map((item) {return Column(crossAxisAlignment: CrossAxisAlignment.start,children: [Row(children: [item.isRequired? Icon(Icons.star,size: 10,color: Theme.of(Get.context!).colorScheme.error): SizedBox(),Text(item.label,style:Theme.of(Get.context!).inputDecorationTheme.labelStyle,)],),SizedBox(height: 16,),GestureDetector(onTap: item.type == 'select'? () {showBottomSheet(item.bottomSheetList!, item.label,selectProp: item.selectProp,selectController: item.selectController,controller: item.controller);}: null,child: TextFormField(controller: item.controller,enabled: item.type == 'text',keyboardType: item.keyboardType,validator: (value) {// 添加表单验证if (item.isRequired && (value == null || value.isEmpty)) {return '请${item.type == 'select' ? '选择' : '输入'}${item.label}';}//正则表达式验证if (item.pattern.isEmpty &&(value == null || value.isEmpty)) {RegExp regex = RegExp(item.pattern);if (!regex.hasMatch(value!)) {return '请输入正确的${item.label}';}}return null;},decoration: InputDecoration(suffixIcon: item.type == 'select'? Icon(Icons.arrow_forward_ios,color: Color(0x6615171E)): null,focusedBorder: Theme.of(Get.context!).inputDecorationTheme.focusedBorder,disabledBorder: Theme.of(Get.context!).inputDecorationTheme.disabledBorder,enabledBorder: Theme.of(Get.context!).inputDecorationTheme.enabledBorder,errorBorder:Theme.of(Get.context!).inputDecorationTheme.errorBorder,errorStyle:Theme.of(Get.context!).inputDecorationTheme.errorStyle,hintText:'请${item.type == 'select' ? '选择' : '输入'}${item.label}',isDense: true,filled: true,fillColor:Theme.of(Get.context!).inputDecorationTheme.fillColor,),),),SizedBox(height: 16,),],);}).toList(),));
}//bottomSheet
void showBottomSheet(List<Map<String, dynamic>> list, String title,{Map? selectProp,RxMap<String, dynamic>? selectController,TextEditingController? controller}) {showGenderPanel(title,buildCheckList(list, (item) {controller?.text = item[selectProp?['label']];Get.back();}, props: selectProp, selected: selectController));
}// 底部弹出层
void showGenderPanel(String title, Widget sheetContent) {showModalBottomSheet(context: Get.context!,builder: (context) {return Container(height: 800,child: Column(children: [Container(// height: 100,padding: Theme.of(Get.context!).dialogTheme.actionsPadding,child: Stack(children: [Row(mainAxisAlignment: MainAxisAlignment.center,children: <Widget>[Text(title,overflow: TextOverflow.ellipsis, // 显示省略号style: Theme.of(Get.context!).dialogTheme.titleTextStyle,),],),Positioned(right: 20,// top: 14,child: GestureDetector(onTap: () {Navigator.pop(context);},child: Icon(Icons.cancel_outlined,color: Theme.of(Get.context!).dialogTheme.iconColor),),),],)),Divider(height: 1,// color: Theme.of(Get.context!).dividerColor,),Container(// padding: EdgeInsets.all(16),child: sheetContent,)],));});
}//单选列表
Widget buildCheckList(List<Map<String, dynamic>> list, Function? onChanged,{Map? props, RxMap<String, dynamic>? selected}) {props ??= {'label': 'label', 'value': 'value'};String label = props['label'] ?? 'label';String value = props['value'] ?? 'value';return Obx(() => Container(width: Get.width,child: Column(children: list.asMap().entries.map((entry) {int index = entry.key;dynamic item = entry.value;print('渲染');return Column(children: [GestureDetector(onTap: () {selected?.value = item;if (onChanged != null) {onChanged(item);}},child: Container(width: Get.width,decoration: BoxDecoration(color: Colors.blue.withOpacity(0),),padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 16),child: Row(children: [Icon((selected?.value[value] ?? '') == item[value]? Icons.check_circle: Icons.circle_outlined,size: 22,color: (selected?.value[value] ?? '') == item[value]? Color.fromRGBO(50, 73, 223, 1): Color.fromRGBO(21, 23, 30, 0.40)),SizedBox(width: 6),Text(item[label],style: TextStyle(fontSize: 16,),),],),)),Divider(height: 1,color: index + 1 == list.length? Color.fromRGBO(128, 130, 145, 0): Color.fromRGBO(128, 130, 145, 0.20),),],);}).toList(),)));
}

二、调用方法:

 buildFormWidget(formList, formKey: formKey),

三、数据格式:

Map<String, dynamic> controllers = {'phone': TextEditingController(text: '仓库1'),'phoneSelect': <String, dynamic>{'id': '18', 'name': '仓库1'}.obs,'code': TextEditingController(text: '123'),};formList = [InputModel(label: '入库仓库',isRequired: true,type: 'select',controller: controllers['phone'],selectController: controllers['phoneSelect'],bottomSheetList: bottomSheetList,selectProp: {'label': 'name', 'value': 'id'}),InputModel(label: '入库数量',isRequired: true,keyboardType: TextInputType.number,controller: controllers['code']),];

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/1389.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java优先级队列(堆)详解

一、优先级概念 什么是优先级&#xff1a;比如女士优先&#xff0c;个子低的优先排到前面去&#xff0c;有一部分数据具备优先级&#xff0c;要以优先级的顺序将顺序存储起来。 前面介绍过队列&#xff0c;队列是一种先进先出(FIFO)的数据结构&#xff0c;但有些情况下&#…

Java:String类

目录 1.String类的重要性2.String对象的比较2.1 比较是否引用同一个对象2.2 boolean equals(Object anObject) 方法&#xff1a;按照字典序比较2.3int compareTo(String s)方法: 按照字典序进行比较2.4 boolean equalsIgnoreCase(Object anObject)方法&#xff1a;忽略大小写的…

word批量修改表格样式

利用宏&#xff0c;批量选中表格&#xff0c;然后利用段落和表设计来操作。 利用宏&#xff0c;批量选中表格&#xff0c;参考百度安全验证段落&#xff0c;表格里面的内容有空格&#xff0c;应该是有缩进&#xff0c;在段落中去掉缩进&#xff0c;即缩进-特殊&#xff0c;选择…

node的事件循环

异步同步啥的就不多说了&#xff0c;直接看node中有哪些是异步 其中灰色部分和操作系统有很大的关系&#xff0c;就不多说了&#xff0c;其中定时器属于timers队列&#xff0c;I/O操作属于poll队列&#xff0c;setImmediate属于check队列&#xff0c;其中nextTick和promise不属…

【Java IO】那字节流和字符流有什么区别?

&#x1f331;以贴近现实的【面试官面试】形式涵盖大部分Java程序员需要掌握的后端知识、面试问题&#xff0c;系列博客收录在我开源的JavaGetOffer中&#xff0c;会一直完善下去&#xff0c;希望收到大家的 ⭐️ Star ⭐️支持&#xff0c;这是我创作的最大动力&#xff1a; h…

2024团体程序设计天梯赛L1-101 别再来这么多猫娘了!

题目链接L1-101 别再来这么多猫娘了&#xff01; #include<iostream> #include<stdio.h> #include<string.h> #include<string> #include<algorithm> using namespace std; string s[105], text; int n, k, ans, a[5005];int main() { // ios::s…

第21天:信息打点-公众号服务Github监控供应链网盘泄漏证书图标邮箱资产

第二十一天 一、开发泄漏-Github监控 1.短期查看 1.密码搜索 根据攻击目标的域名在GitHub上进行搜索密码&#xff0c;如果目标网站的文件与搜索到的源码相关&#xff0c;那就可以联想目标网站是否使用这套源码进行开发 原理就是开发者在上传文件的时候忘记更改敏感文件或者…

利用FFmpeg 转换课程vtt 字幕到 srt字幕

字幕转换工具 经常学习udemy 视频课程的&#xff0c;可能知道&#xff0c;从网络下载的udemy 课程文件里面有时候字幕是vtt 格式的&#xff0c;有时候想导入到百度网盘里面&#xff0c;怎奈百度网盘&#xff0c;不支持vtt 字幕格式。有字幕的时候&#xff0c;会比较好多了。既可…

【机器学习】《ChatGPT速通手册》笔记

文章目录 第0章 前言第1章 ChatGPT的由来&#xff08;一&#xff09;自然语言处理任务&#xff08;二&#xff09;ChatGPT所用数据数据大小&#xff08;三&#xff09;ChatGPT的神经网络模型有175亿个参数&#xff08;四&#xff09;模型压缩 方案 第2章 ChatGPT页面功能介绍&a…

日期相关的题目

日期相关的题目 1. 计算日期到天数转换2. 日期累加3. 打印日期4. 日期差值 1. 计算日期到天数转换 输出示例: 思路&#xff1a;计算前n-1个月的天数在加上这个月的天数。 #include <iostream> using namespace std;int main() {int year, month, day;cin >> yea…

llama2 与 llama3比较

Llama 3 刚刚在4月18号推出&#xff0c;距 Llama 2 发布正好 9 个月。它已经可以在 Meta 网站上进行聊天&#xff0c;可以从 Huggingface 以 safetensors 或 GGUF 格式下载。 llama 2 与 llama3 比较 1. 模型输出&#xff08;model output&#xff09; llama 2 输出只能是文本…

const成员函数 以及 取地址及const取地址操作符重载

目录 const成员函数 结论&#xff1a; 取地址及const取地址操作符重载 const成员函数 将const 修饰的 “ 成员函数 ” 称之为 const成员函数 &#xff0c; const 修饰类成员函数&#xff0c;实际修饰该成员函数的&#xff08;*this&#xff09; &#xff0c;表明在该成员函数…

网络原理-IP协议

一、IP协议报头 版本号:用来表示IP协议的版本,现在常用的IP协议有两个版本,IPv4和IPv6&#xff0c;其他版本可能只存在于实验室中&#xff0c;并没有被广泛的使用。 首部长度:用来表示IP报头的长度,因为存在"选项"字段&#xff0c;所以IP报头是可变长的,此处单位为4…

日期类的实现

目录 Date.h Test.cpp 测试代码Test.cpp 日期类的实现 代码分享 Date.h #pragma once #include<iostream> using namespace std; #include<assert.h>class Date {//友元函数声明friend ostream& operator<<(ostream& out, Date& d);friend…

[渗透测试学习] Headless-HackTheBox

Headless-HackTheBox 信息搜集 使用nmap扫描一下 nmap -sV -sC -v --min-rate 1000 10.10.11.8可以发现5000端口是开放的,继续扫一下目录 访问/dashboard发现只有admin才可以,我们注意到cookie值为JWT加密,拿到揭秘网站验证下猜想 cookie为user用户,那么我们要想访问必须…

[阅读笔记29][AgentStudio]A Toolkit for Building General Virtual Agents

这篇论文是24年3月提交的&#xff0c;提出了一个用于agent开发的全流程工具包。 作者提到目前agent开发主要有两个阻碍&#xff0c;一个是缺乏软件基础&#xff0c;另一个是缺乏在真实世界场景中进行评估。针对这两个阻碍&#xff0c;作者涉及了一个开发工具包&#xff0c;包括…

[已解决]react打包部署

react打包部署 问题 npm install 命令无反应 思路 换成 yarn install 安装完hadoop的环境后&#xff0c;使用node的yarn会报错&#xff1a; 我们在cmd使用where yarn&#xff0c;如下&#xff1a; 看你想保留哪一个&#xff0c;我平时node用的多&#xff0c;就把hadoop的y…

项目小游戏-贪吃蛇

目录 1.游戏开始 - GameStart 1.1cmd命令窗口 调节窗口命令 ​编辑更改窗口命名 ​编辑 1.2 Win32 API win32 API 的介绍: ​编辑 获取控制台坐标COORD 获取控制台句柄: 获取缓冲台光标信息: 获取虚拟键位: 本地初始化 setlocale(); 游戏开始的具体实现&#xff1a…

使用AOP切面做防止用户重复提交功能

在我们的项目中&#xff0c;需要考虑到有时候因为网络原因或者其他原因用户对同一个接口进行同一批数据的重复性操作&#xff0c;如果不做这样的处理很可能会在数据库中添加多条同样的数据。 我们可以通过使用aop来解决这样的问题&#xff0c;接下来看看具体怎么做吧~ 自定义…

网络原理-UDP和TCP

在传输层中有两个非常重要的协议&#xff0c;UDP和TCP&#xff0c;现在就来研究一下这两个协议。 UDP 报文格式 我们观察可以发现&#xff0c;里面UDP报文长度为2个字节&#xff0c;那么是多少呢&#xff1f;我们需要快速反应如下固定字节数据类型的取值范围&#xff1a; 字…