上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页
  2020年9月25日
摘要: 语法糖 ?. 与 ?? ?. 它的意思是左边如果为空返回 null,否则返回右边的值。 A?.B 如果 A 等于 null,那么 A?.B 为 null 如果 A 不等于 null,那么 A?.B 等价于 A.B 阅读全文
posted @ 2020-09-25 13:29 wp7ers 阅读(748) 评论(0) 推荐(0)
  2020年9月22日
摘要: ListView头部有一段空白区域-padding,去掉padding,可使用MediaQuery.removePadding Widget _listView(BuildContext context){ return MediaQuery.removePadding( removeTop: tr 阅读全文
posted @ 2020-09-22 17:04 wp7ers 阅读(781) 评论(0) 推荐(0)
摘要: SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light); 阅读全文
posted @ 2020-09-22 16:57 wp7ers 阅读(513) 评论(0) 推荐(0)
  2020年9月18日
摘要: flutter TabBarView 没有跟Scaffold 一起使用的时候,容易报 Horizontal viewport was given unbounded height 错误,例如将其作为Column的子元素,就会出现该错误。错误提示意思是水平视图高是无限的,这里由于是用在Column中, 阅读全文
posted @ 2020-09-18 13:31 wp7ers 阅读(2194) 评论(0) 推荐(1)
  2020年9月16日
摘要: class test{ int a ; String b ; String c ; test(this.a,this.b,{this.c});}1.构造时使用语法糖,那么使用this关键字。2.在最后使用分号。没有主方法体。3.不定参使用大括号括起。调用 var clz = test(1, "111 阅读全文
posted @ 2020-09-16 16:25 wp7ers 阅读(1553) 评论(0) 推荐(0)
摘要: dart 构造函数 ClassName(...) //普通构造函数 普通构造函数 这就是我们普通的构造函数,其样子和其它语言几乎一样 class Point { num x, y; Point(num x, num y) { // There's a better way to do this, s 阅读全文
posted @ 2020-09-16 15:50 wp7ers 阅读(732) 评论(0) 推荐(0)
摘要: 字符串定义 使用单引号或双引号 String a = "abcdefg"; String b = '12345'; 创建多行字符串,保留内在格式 使用三个单引号或三个双引号 创建多行字符串,保留内在格式,如换行和缩进等,里面写什么输出就是什么。 三个单引号 String e = '''asd fds 阅读全文
posted @ 2020-09-16 14:05 wp7ers 阅读(528) 评论(0) 推荐(0)
摘要: 无状态:StatelessWidget有状态:StatefulWidget 要创建一个自定义有状态widget,需创建两个类:StatefulWidget和State 状态对象包含widget的状态和build() 方法。 当widget的状态改变时,状态对象调用setState(),告诉框架重绘w 阅读全文
posted @ 2020-09-16 13:47 wp7ers 阅读(126) 评论(0) 推荐(0)
  2020年9月15日
摘要: flutter 代码 以dart语言编写放在lib文件夹里。 配置文件,三来设置三方库等。指定资源图片目录。统一使用assets 阅读全文
posted @ 2020-09-15 16:02 wp7ers 阅读(159) 评论(0) 推荐(0)
  2020年9月11日
摘要: 1、配置flutter镜像地址 打开下面文件 没有显示的->请的按 "command + shift + ." 或者:在终端输入: defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder 如果没 阅读全文
posted @ 2020-09-11 16:04 wp7ers 阅读(971) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页