摘要:
滚动列表与动态加载 ListView //特点:一次性加载完所有东西,对于列项多的项目非常耗性能 ListView( children: [ Container( height: 300, width: 300, color: Colors.red, ), Text('nihao flutter') 阅读全文
摘要:
正则表达式 [正则]匹配字符allMatches()、stringMatch()、hasMatch()、firstMatch()、matchAsPrefix() //hasMatch() 是否匹配到,能匹配到返回true,否则返回false //bool hasMatch(String input) 阅读全文
摘要:
类 类的定义 //定义一个Person的类 class Person { //属性 String userName = 'Tobu'; int age = 25; String blogAdress = 'https://www.cnblogs.com/TobuTobu'; String userI 阅读全文