flutter
文章平均质量分 51
Saujyun
路漫漫其修远兮,吾将上下而求索
展开
-
flutter打包异常You must have a COPYING, LICENSE or UNLICENSE file in the root directory
flutter工程打包发布的时候遇到以下问题You must have a COPYING, LICENSE or UNLICENSE file in the root directory...Missing requirements:* Your pubspec.yaml is missing a "homepage" field.Sorry, your package is missing a requirement and can't be published yet.For more.原创 2021-07-12 21:44:52 · 540 阅读 · 3 评论 -
flutter工程pubspec.yaml文件配置解读
1.根据分支打包https://www.coder.work/article/275092原创 2021-07-01 21:21:38 · 584 阅读 · 2 评论 -
flutter的with、implements、extends区别
1.首先从flutter的三种类型定义讲起:class(类)、abstract class(抽象类)、 Mixin(混入)dart里面没有接口的类型,同时也是单继承语言。class和abstract class与java中的差不多,这里不多说,重点讲一下Mixin。编写成mixin的类,能很好的对代码进行复用,也能让dart实现“伪多重继承”,同时又不会造成多重继承导致的菱形问题2.dart的with、implements、extendsextends:能重写父类属性或者方法,同时能通过super原创 2021-01-11 22:06:51 · 1705 阅读 · 0 评论