上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 340 下一页
摘要: 问:Coding远程仓库地址变了,本地git仓库地址如何更新为最新地址 git修改远程仓库地址 方法有三种:1.修改命令git remote origin set-url [url]2.先删后加git remote rm origingit remote add origin [url]3.直接修改 阅读全文
posted @ 2019-01-03 09:33 星辰之力 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 本文学习Flutter打包,打包环境,Android studio3.2,打包的程序就使用上文的酷炫天气预报 terminal执行下列命令: 1.生成key(如果有现成的Key跳过这一步) 2.key.properties创建 3.app的build.gradle中配置,这个文件位于这个位置 4.执 阅读全文
posted @ 2019-01-02 11:42 星辰之力 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 几个Flutter开发中的常用函数 阅读全文
posted @ 2018-12-27 18:25 星辰之力 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 使用脚手架Scaffold可以设置AppBar,想要设置高度,在AppBar外包一层PreferredSize,设置preferredSize的属性为想要的高度即可。 阅读全文
posted @ 2018-12-27 09:54 星辰之力 阅读(2985) 评论(0) 推荐(0) 编辑
摘要: 搜索使用的是豆瓣电影API https://developers.douban.com/wiki/?title=movie_v2#subject 效果 代码: https://github.com/zhanglihow/search_movie 参考: https://github.com/Norb 阅读全文
posted @ 2018-12-26 13:27 星辰之力 阅读(566) 评论(0) 推荐(0) 编辑
摘要: return Scaffold( appBar: AppBar( elevation: 0.0, title: new Text("登陆"), ), resizeToAvoidBottomPadding: false, //输入框抵住键盘 ); 阅读全文
posted @ 2018-12-26 11:50 星辰之力 阅读(3893) 评论(0) 推荐(0) 编辑
摘要: return new WillPopScope( child: Scaffold( body: new Center( child: new Column( children: [ ...... ], )), floatingActionButton: FloatingActi... 阅读全文
posted @ 2018-12-26 11:48 星辰之力 阅读(2221) 评论(0) 推荐(0) 编辑
摘要: TextField( controller: TextEditingController.fromValue(TextEditingValue( // 设置内容 text: inputText, // 保持光标在最后 ... 阅读全文
posted @ 2018-12-26 10:19 星辰之力 阅读(5461) 评论(0) 推荐(0) 编辑
摘要: Check Update一直提示Connection failed. Please check your network connection and try again,开始以为是由于G*W在捣乱,但是打开VPN后还是无法更新,然后开始Google了一下找到了下面的解决办法。 1、Mac OSX首 阅读全文
posted @ 2018-12-23 22:35 星辰之力 阅读(2038) 评论(0) 推荐(0) 编辑
摘要: HTML Snippets: 超级实用且初级的 H5代码片段以及提示 HTMLHint: html代码检测 HTML CSS Support : 让 html 标签上写class 智能提示当前项目所支持的样式。新版已经支持scss文件检索,这个也是必备插件之一 Auto Close Tag : 匹配 阅读全文
posted @ 2018-12-22 21:05 星辰之力 阅读(860) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 340 下一页