摘要: Flutter imgae支持的图片格式为:JPEG, PNG, GIF, Animated GIF, WebP, Animated WebP, BMP, and WBMP。Flutter Image是显示图片的一个Widget。 Flutter Image的几个构造方法: 方法释义 Image() 阅读全文
posted @ 2020-04-01 23:23 久依 阅读(5569) 评论(0) 推荐(0) 编辑
摘要: 1 继续关系: BoxDecoration:实现边框、圆角、阴影、形状、渐变、背景图像 ShapeDecoration:实现四个边分别指定颜色和宽度、底部线、矩形边色、圆形边色、体育场(竖向椭圆)、 角形(八边角)边色 FlutterLogoDecoration:实现Flutter图片 Underl 阅读全文
posted @ 2020-04-01 14:48 久依 阅读(2663) 评论(0) 推荐(0) 编辑
摘要: 1.命令行运行flutter run之后iOS报错:Could not install build/ios/iphones/Runner.app on XXXXX. try lunching Xcode andselecting "Project > Run" to fix the problem 阅读全文
posted @ 2020-04-01 14:44 久依 阅读(4093) 评论(0) 推荐(0) 编辑
摘要: /** const TabBar({ Key key, @required this.tabs,//显示的标签内容,一般使用Tab对象,也可以是其他的Widget this.controller,//TabController对象 this.isScrollable = false,//是否可滚动 阅读全文
posted @ 2020-04-01 14:24 久依 阅读(3174) 评论(0) 推荐(0) 编辑
摘要: 关键代码 bottom: PreferredSize( preferredSize: Size.fromHeight(48), child: Material( //这里设置tab的背景色 color: Colors.green, child: TabBar( // indicator: Color 阅读全文
posted @ 2020-04-01 11:20 久依 阅读(6617) 评论(0) 推荐(1) 编辑