美文网首页程序员
flutter升級到v1.12.13后填坑笔记

flutter升級到v1.12.13后填坑笔记

作者: 胜_弟 | 来源:发表于2020-03-13 18:02 被阅读0次

    遇到的坑1、:Gradle build failed to produce an .apk file

    Android Studio -v 3.2

    Gradle -v 3.3.0

    Gradle Wrapper -v 4.10.1

    编译一直失败:Finished with error: Gradle build failed to produce an .apk file. It's likely that this file was generated under 项目目录\build, but the tool couldn't find it.

    浪费了两个多小时检查和google,还是失败,最后通过在stackoverflow上的联想到项目的build.gradle里面build的目录路径创建文件:原来是不知啥时候漏写了这个subprojects {

    project.buildDir ="${rootProject.buildDir}/${project.name}"

    };

    最后添加完就搞定,如下:

    遇到的坑2、 TextFild 编辑框在某些机型不能居中

    设置contentPadding为0也不行,最终我的做法是同时再添加一个透明的边框样式

    如下:

    相关文章

      网友评论

        本文标题:flutter升級到v1.12.13后填坑笔记

        本文链接:https://www.haomeiwen.com/subject/chrsshtx.html