上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 37 下一页

2019年12月16日

flutter 网络加载和json解析(sunt aut facere repellat provident occaecati excepturi optio reprehenderit)

摘要: sunt aut facere repellat provident occaecati excepturi optio reprehenderit 这是获取的json内容的title,仔细看清楚 首先在pubspec.yaml中添加https://www.cnblogs.com/wf-l52013 阅读全文

posted @ 2019-12-16 16:37 高彰 阅读(569) 评论(0) 推荐(0) 编辑

flutter 绘透明度和自定义widget

摘要: Opacity和Color 透明度和字体颜色 阅读全文

posted @ 2019-12-16 16:15 高彰 阅读(1657) 评论(0) 推荐(0) 编辑

flutter 绘图

摘要: 在 iOS 上,你通过 CoreGraphics 来在屏幕上绘制线条和形状。Flutter 有一套基于 Canvas 类的不同的 API,还有 CustomPaint 和 CustomPainter这两个类来帮助你绘图。后者实现你在 canvas 上的绘图算法。 想要学习如何实现一个笔迹画笔,请参考 阅读全文

posted @ 2019-12-16 15:55 高彰 阅读(2085) 评论(0) 推荐(0) 编辑

2019年12月10日

Error connecting to the service protocol: HttpException: , uri = http://127.0.0.1:1024/d8BEvLNvJ4g=/ws

摘要: 一句话告诉你:你的设备没正确连接好电脑。 拔了重新插,不然就换根线 阅读全文

posted @ 2019-12-10 11:12 高彰 阅读(830) 评论(0) 推荐(0) 编辑

flutter button RaisedButton(已经弃用改用ElevatedButton)组件

摘要: 1.普通button import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(Bu 阅读全文

posted @ 2019-12-10 11:06 高彰 阅读(1264) 评论(0) 推荐(0) 编辑

Dart语言速成

摘要: /* 15.Dart(Libraries)*/ // 15.1 // import 'dart:html'; // 15.2 // demo.dart import './myapp_demoDartStudy.dart'; // 15.3 使用as关键字为导入的某个包设置一个前缀,或者说别名 import './myapp_demoDartStudy.dart' as lib15; ... 阅读全文

posted @ 2019-12-10 10:02 高彰 阅读(366) 评论(0) 推荐(0) 编辑

2019年12月9日

flutter FadeInImage

摘要: import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( title: 'Flutter gesture', // home: TutorialHome(), home: FadeInImageDemo(), )); } class FadeInImageDemo ex... 阅读全文

posted @ 2019-12-09 20:15 高彰 阅读(856) 评论(0) 推荐(0) 编辑

flutter gif

摘要: import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { var gg = 120; @override Widget build(BuildContext context) { var title =... 阅读全文

posted @ 2019-12-09 20:05 高彰 阅读(1078) 评论(0) 推荐(0) 编辑

2019年12月5日

flutter 局部主题

摘要: 如果我们想在应用程序的一部分中覆盖应用程序的全局的主题,我们可以将要覆盖得部分封装在一个ThemeWidget中。 有两种方法可以解决这个问题:创建特有的ThemeData或扩展父主题。 1.创建特有的ThemeData 如果我们不想继承任何应用程序的颜色或字体样式,我们可以通过new ThemeD 阅读全文

posted @ 2019-12-05 20:00 高彰 阅读(854) 评论(0) 推荐(0) 编辑

flutter 主题ThemeData

摘要: 单个路由换肤(ThemeData),掌握局部覆盖全局 代码相关解释:1.可以通过局部主题覆盖全局主题。上述代码中的通过Theme组件为第二行图标指定固定颜色(橘黄色)一样。Flutter会经常使用这种方法来自定义子树主题。 2.Flutter是怎么让局部主题覆盖全局主题的? 答:主要是因为Widge 阅读全文

posted @ 2019-12-05 19:04 高彰 阅读(2875) 评论(0) 推荐(0) 编辑

上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 37 下一页

导航