2019年5月14日

iOS 开发,相关网址

摘要: iOS 开发,相关网址 说明 | 网址 | 注册开发者 | https://developer.apple.com/cn/programs/enroll/ 未付费688个人开发账号真机调试测试教程 | http://www.applicationloader.net/blog/zh/1073.htm 阅读全文

posted @ 2019-05-14 23:59 cag2050 阅读(162) 评论(0) 推荐(0) 编辑

dart 使用

摘要: 用法 | 说明 | print('xxx') | 打印 == | 比较相等 != | 比较不等 语句后面必须加分号 | 阅读全文

posted @ 2019-05-14 20:01 cag2050 阅读(115) 评论(0) 推荐(0) 编辑

initState 必须调用 super.initState(); 否则报错

摘要: ``` @override void initState() { // initState 必须调用 super.initState(); 否则报错:info: This method overrides a method annotated as @mustCallSuper in 'State', but does not invoke the overridden meth... 阅读全文

posted @ 2019-05-14 19:53 cag2050 阅读(1096) 评论(0) 推荐(0) 编辑

TabBar 设置可滚动:isScrollable: true

摘要: ``` appBar: AppBar( bottom: TabBar( // 设置可滚动 isScrollable: true, controller: _tabController, tabs: tabs.map((e) => Tab(text: e)).toList()... 阅读全文

posted @ 2019-05-14 10:38 cag2050 阅读(569) 评论(0) 推荐(0) 编辑

导航