摘要: 滚动列表与动态加载 ListView //特点:一次性加载完所有东西,对于列项多的项目非常耗性能 ListView( children: [ Container( height: 300, width: 300, color: Colors.red, ), Text('nihao flutter') 阅读全文
posted @ 2021-02-15 22:08 漫游者杰特 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 正则表达式 [正则]匹配字符allMatches()、stringMatch()、hasMatch()、firstMatch()、matchAsPrefix() //hasMatch() 是否匹配到,能匹配到返回true,否则返回false //bool hasMatch(String input) 阅读全文
posted @ 2021-02-15 18:03 漫游者杰特 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 类 类的定义 //定义一个Person的类 class Person { //属性 String userName = 'Tobu'; int age = 25; String blogAdress = 'https://www.cnblogs.com/TobuTobu'; String userI 阅读全文
posted @ 2021-02-15 16:05 漫游者杰特 阅读(268) 评论(0) 推荐(0) 编辑