アライさん ノート
アライさん なのだ
Toggle navigation
アライさん ノート
Homepage
Tags
hexo全局_config.yml配置
hexo _config.yml123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475title: アライさん ノートsubtitle: アライさん なのだ.........
Posted by アライさん on 2019年10月23日
使用SSH连接Github
创建一个SSH key1ssh-keygen -t rsa -C "your_email@example.com" 提示输入ssh key的名字Enter passphrase,提示输入ssh时的密码(可以直接按回车无需密码) 进入/home/user/.ssh/目录复制刚创建的、带pub后缀的key文件中的内容。粘贴到github的 设置 - SSH.........
Posted by アライさん on 2019年10月23日
Flutter动画
12345678910111213141516171819202122232425262728class _pageState extends State<Page> with SingleTickerProviderStateMixin { Animation _doubleTween; Animation _colorTween; Animation.........
Posted by アライさん on 2019年10月22日
状态栏高度
MediaQuery.of(context).padding.top; ...
Posted by アライさん on 2019年10月22日
Fluro路由管理
1fluro: ^1.5.0 缺陷:通过url的方式传递参数,不支持中文如/page?params1=标题¶ms=颜色需要进行编码转换实测英文用这种转码方式也不会有问题 1234567891011121314151617181920import 'dart:convert';/// fluro 参数编码解码 工具 类class FluroCo.........
Posted by アライさん on 2019年10月22日
Flutter Dio联网封装成NetUtils
统一定义api地址列表,api.dart12345class Api{ flutter-go.alibaba.net/'; static const String DO_LOGIN = BASE_URL+'doLogin';//登陆} net_utils.dart123456789101112131415161718192021.........
Posted by アライさん on 2019年10月22日
圆角阴影按钮
123456789RaisedButton( color: Colors.blue, highlightColor: Colors.blue[700], colorBrightness: Brightness.dark, splashColor: Colors.grey, child: Text("Submit".........
Posted by アライさん on 2019年10月22日
Sqlite数据库操作
1234#sqlitesqflite: ^1.1.6#pathpath_provider: ^1.1.0 123final dbHelper = DatabaseHelper.instance;int count = await dbHelper.queryRssUrlTableNameRowCount(title.text);final id = await dbHelper..........
Posted by アライさん on 2019年10月22日
TextField
123456789101112131415161718192021222324252627TextField( controller: TextEditingController.fromValue(TextEditingValue( text: rssUrl,selection: TextSelection.collapse.........
Posted by アライさん on 2019年10月22日
XML解析
1xml: ^3.4.1 123import 'package:xml/xml.dart' as xml;var document = xml.parse(xmlString);final title = document.findAllElements('title').first; ...
Posted by アライさん on 2019年10月22日
← Newer Posts
Older Posts →
About me
アライさん なのだ
Tags
android系统相关
android
iOS开发
linux
macOS
flutter
其他技术
git
hexo
算法
错误记录
nodejs
react
vue
typescript
Recent posts
vue实战
typescript知识点
react_node.js开发实战
redux
react基础