摘要: 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 阅读(248) 评论(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 阅读(146) 评论(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 阅读(767) 评论(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 阅读(2939) 评论(0) 推荐(0)
摘要: 如图 阅读全文
posted @ 2020-01-06 01:11 anobscureretreat 阅读(571) 评论(0) 推荐(0)
摘要: 如图 阅读全文
posted @ 2020-01-06 00:29 anobscureretreat 阅读(248) 评论(0) 推荐(0)
摘要: 如图 阅读全文
posted @ 2020-01-06 00:12 anobscureretreat 阅读(980) 评论(0) 推荐(0)