随笔分类 -  flutter

摘要:错误信息: DioError [DioErrorType.DEFAULT]: Error on line 1, column 17: Invalid media type: expected no more input. 解决方式: 暂无 阅读全文
posted @ 2020-10-31 23:49 anobscureretreat 阅读(785) 评论(0) 推荐(0) 编辑
摘要:flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform 错误解释 平台不支持不安全的 HTTP 协议,即不允许访问 HTTP 域名的地址。 产生原因 IOS 和 A 阅读全文
posted @ 2020-10-31 22:55 anobscureretreat 阅读(2016) 评论(0) 推荐(0) 编辑
摘要:在python_server文件夹中运行server.py , 运行apk,输入IP以及port 登陆成功,长按元素弹出菜单 1. 2. github: https://github.com/fusu192/transfer 阅读全文
posted @ 2020-04-24 15:26 anobscureretreat 阅读(247) 评论(0) 推荐(0) 编辑
摘要:Uri.encodeComponent(url); // To encode url Uri.decodeComponent(encodedUrl); // To decode url from: https://blog.csdn.net/qq_32760901/article/details/9 阅读全文
posted @ 2020-02-23 16:19 anobscureretreat 阅读(2171) 评论(0) 推荐(0) 编辑
摘要:分块下载真的能提高下载速度吗? 其实下载速度的主要瓶颈是取决于网络速度和服务器的出口速度,如果是同一个数据源,分块下载的意义并不大,因为服务器是同一个,出口速度确定的,主要取决于网速,而上面的例子正式同源分块下载,读者可以自己对比一下分块和不分块的的下载速度。如果有多个下载源,并且每个下载源的出口带 阅读全文
posted @ 2020-02-19 21:38 anobscureretreat 阅读(477) 评论(0) 推荐(0) 编辑
摘要:在gradle.properties中添加如下代码即可 android.enableJetifier=true android.useAndroidX=true 阅读全文
posted @ 2020-01-30 11:02 anobscureretreat 阅读(919) 评论(0) 推荐(0) 编辑
摘要:在style下面的TextStyle增加属性decoration: TextDecoration.none 阅读全文
posted @ 2020-01-29 21:32 anobscureretreat 阅读(2138) 评论(0) 推荐(0) 编辑
摘要:平时我们在开发flutter过程中,在执行flutter packages get命令之后,如果运气不好的,命令没有执行成功的话,我们就会遇到这个错误提示: Waiting for another flutter command to release the startup lock... 1 然后 阅读全文
posted @ 2020-01-28 22:53 anobscureretreat 阅读(387) 评论(0) 推荐(0) 编辑
摘要:elevation: 0.0, // 下部的影子,该值越大,影子越清楚,为0时,不会有影子,和RaisedButton是一样的 阅读全文
posted @ 2020-01-22 22:38 anobscureretreat 阅读(1019) 评论(0) 推荐(0) 编辑
摘要:#下载flutter git clone https://github.com/flutter/flutter.git #导入到环境变量 export PATH="$PATH:`pwd`/flutter/bin" #pre-download development binaries flutter 阅读全文
posted @ 2020-01-14 16:55 anobscureretreat 阅读(230) 评论(0) 推荐(0) 编辑
摘要:1. 简单介绍:Flutter是google发布的一个用于创建跨平台、高性能移动应用框架,目前可以使用在Android、iOS、Web乃至桌面应用上。 2. 前景: Cordova:Apache项目,其实现原理就是内部封装了一个WebView,然后通过web技术编写移动应用,性能很低。 Weex或R 阅读全文
posted @ 2020-01-14 16:47 anobscureretreat 阅读(591) 评论(0) 推荐(0) 编辑
摘要:common.dart List<String> names= ['a','b']; uu.dart import 'common.dart'; class uu { List<String> utilNames=names; } Util.dart import 'common.dart'; cl 阅读全文
posted @ 2020-01-13 12:15 anobscureretreat 阅读(382) 评论(0) 推荐(0) 编辑
摘要:我们只需要记住textDirection就是用来控制水平方向的起始位置和排列方向verticalDirection就是用来控制垂直方向的起始位置和排列方向 然后记住MainAxisAlignment(主轴)就是与当前控件方向一致的轴CrossAxisAlignment(交叉轴)就是与当前控件方向垂直 阅读全文
posted @ 2020-01-12 00:19 anobscureretreat 阅读(307) 评论(0) 推荐(0) 编辑
摘要:import 'package:flutter/material.dart'; void main() { print("5hahahha"); runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget 阅读全文
posted @ 2020-01-11 22:57 anobscureretreat 阅读(607) 评论(0) 推荐(0) 编辑
摘要:出现如上报错, 注释掉android/app/build.gradle文件中的以下内容, 参考: https://stackoverflow.com/questions/54457245/a-problem-occurred-evaluating-project-app-path-may-not-b 阅读全文
posted @ 2020-01-10 00:29 anobscureretreat 阅读(5827) 评论(2) 推荐(0) 编辑
摘要:import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; void main() { runApp(new MyApp( items: new List<String>.generate(10000, (i) => "Item $i"), )); } class MyApp extends S 阅读全文
posted @ 2020-01-06 23:12 anobscureretreat 阅读(244) 评论(0) 推荐(0) 编辑
摘要:import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { final title = 'Gesture Demo'; return ne 阅读全文
posted @ 2020-01-06 23:01 anobscureretreat 阅读(142) 评论(0) 推荐(0) 编辑
摘要:import 'dart:async'; import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; Future<Post> fetchPost() async { final response = await http.get('https://j 阅读全文
posted @ 2020-01-06 22:47 anobscureretreat 阅读(758) 评论(0) 推荐(0) 编辑
摘要:进入到你的flutter sdk目录中,然后找到bin/cache/lockfile文件,删除它即可。 删除之后你再运行flutter doctor,你会发现错误已经解决了。 参考: https://blog.csdn.net/qq_26287435/article/details/89537153 阅读全文
posted @ 2020-01-06 22:44 anobscureretreat 阅读(2921) 评论(0) 推荐(0) 编辑
摘要:如图 阅读全文
posted @ 2020-01-06 00:29 anobscureretreat 阅读(244) 评论(0) 推荐(0) 编辑