flutter
flutter学习
kenovice
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TextFormField 去掉 下划线
TextFormField( decoration: InputDecoration( hintText: "再次填写确认",//网上搜索的 都是 border: InputBorder.none 发现不管用 //border: InputBorder.none,//经过查看代码发现加上以下两个可以去掉 enabledBorder: InputBorder.none, focusedBorder: InputBorder.none,))...原创 2020-07-17 15:32:08 · 1352 阅读 · 0 评论 -
flutter a .dex file cannot exceed 64K
第一步:添加multidex第二部:添加multiDexEnabled ----构建运行完事。原创 2020-07-09 16:12:29 · 528 阅读 · 0 评论 -
Flutter Could not determine the dependencies of task ‘:path_provider:compileDebugAidl‘.报错记录
FAILURE: Build failed with an exception.* What went wrong:Could not determine the dependencies of task ':app:preDebugBuild'.> Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'. > Could not resolve project :..原创 2020-07-02 14:43:50 · 1473 阅读 · 0 评论 -
flutter 如何让两个子控件左对齐和右对齐
第一种:FlexibleRow( children: <Widget>[ Align( alignment: Alignment.centerLeft, child: Text('123'), ), Flexible(fit: FlexFit.tight, child: SizedBox()), Align( alignment: Alignment.centerRight, child:原创 2020-05-21 09:25:20 · 4673 阅读 · 0 评论
分享