摘要: 需求 列表展示: 列表项都是同一格式,列表项数据从List里取 解决方案 使用map map源码 Iterable<T> map<T>(T f(E e)) => MappedIterable<E, T>(this, f); 调用map 返回的数据类型为Iterable 注意1: 需要将Iterabl 阅读全文
posted @ 2020-08-19 15:30 shellon 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 问题 Flexible 里用了 Column, 使得高度无法确定 解决方案 将Flexible替换为ConstrainedBox, 并设定maxHeight 代码 ConstrainedBox( constraints: BoxConstraints(maxHeight: 500,, child: 阅读全文
posted @ 2020-08-19 15:13 shellon 阅读(3770) 评论(0) 推荐(0) 编辑
摘要: 问题原因 json_annotation版本不对 修改json_annotation版本号 当前可用版本号 json_annotation: ^2.2.0 阅读全文
posted @ 2020-08-18 16:59 shellon 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 错误原因 json格式不正确,检查:是否加了注释、最后一个是否加了逗号... 正确格式 { "name": "shellon", "age": 25 } 阅读全文
posted @ 2020-08-18 16:36 shellon 阅读(1418) 评论(0) 推荐(0) 编辑
摘要: 常用属性 container 填充padding,边距margins,边框borders,背景色color, decoration: 渐变gradient-Alignment(x,y),圆角borderRadius,阴影boxShadow,圆shape icon 颜色color text style 阅读全文
posted @ 2020-07-29 10:02 shellon 阅读(155) 评论(0) 推荐(0) 编辑
摘要: macOS 打开bash_profile open ~/.bash_profile 在打开的文件内写需要配置的环境变量 阅读全文
posted @ 2020-07-27 15:54 shellon 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 需求 页面向下滚动时,需要将顶部的搜索栏信息和导航菜单吸顶,并且,搜索栏信息和导航菜单之间可以切换。 效果 https://www.iguopin.com/index.php?m=&c=index&a=index 代码实现 HTML <div class="nav-search"> <div cla 阅读全文
posted @ 2020-07-23 14:42 shellon 阅读(950) 评论(0) 推荐(0) 编辑
摘要: 需求 页面中一个小区域循环滚动展示通知(公告、新闻、活动、图片等),并且鼠标hover时停止滚动并提示,鼠标离开后,继续滚动。 效果图 https://www.iguopin.com/index.php?m=&c=index&a=index 代码实现 html <div id="news"> <ul 阅读全文
posted @ 2020-07-23 14:06 shellon 阅读(2488) 评论(0) 推荐(0) 编辑
摘要: 正确的邮箱实例:123@vlog.com 或者 123@vlog.cn 代码: // HTML部分 <div>邮箱:</div> <input name="email" id="email" type="text"> // JS部分 var reg = new RegExp("^[a-z0-9A-Z 阅读全文
posted @ 2020-06-21 15:40 shellon 阅读(12881) 评论(0) 推荐(0) 编辑
摘要: SEO是什么 搜索引擎优化,又称为SEO,即Search Engine Optimization,它是一种通过分析搜索引擎的排名规律,了解各种搜索引擎怎样进行搜索、怎样抓取互联网页面、怎样确定特定关键词的搜索结果排名的技术。 与前端有关的SEO配置 title keywords descriptio 阅读全文
posted @ 2020-06-19 13:56 shellon 阅读(720) 评论(0) 推荐(0) 编辑