首页
壁纸
关于
Search
1
IObit Uninstaller 注册码
2,119 阅读
2
与元素类型 "application" 相关联的属性 "tools:replace" 的前缀 "tools" 未绑定。
336 阅读
3
常用的开源API记录
181 阅读
4
flutter 隐藏中间省略号
177 阅读
5
诗集收藏•明:陈曦/高启
148 阅读
默认
开发
随记
工具
游戏
番剧
关于猫的随笔
登录
Search
路过的假面骑士
累计撰写
87
篇文章
累计收到
2
条评论
首页
栏目
默认
开发
随记
工具
游戏
番剧
关于猫的随笔
页面
壁纸
关于
搜索到
58
篇与
的结果
2022-08-08
底部导航颜色调整
return AnnotatedRegion( value: const SystemUiOverlayStyle( //this color must be equal to the WaterDropNavBar backgroundColor systemNavigationBarColor: Colors.white, systemNavigationBarIconBrightness: Brightness.dark, ), child: Scaffold( body: // code here ));
2022年08月08日
58 阅读
0 评论
0 点赞
2022-08-05
与元素类型 "application" 相关联的属性 "tools:replace" 的前缀 "tools" 未绑定。
与元素类型 "application" 相关联的属性 "tools:replace" 的前缀 "tools" 未绑定。在AndroidManifest.xml添加:xmlns:tools="http://schemas.android.com/tools"
2022年08月05日
336 阅读
0 评论
0 点赞
2022-06-23
The number of method references in a .dex file cannot exceed 64K
在build.gradle defaultConfig中加入 multiDexEnabled truedefaultConfig { multiDexEnabled true }
2022年06月23日
37 阅读
0 评论
0 点赞
2022-05-13
开发日记:震动反馈
import 'package:flutter_vibrate/flutter_vibrate.dart'; vibration({required FeedbackType type}) async { bool canVibrate = await Vibrate.canVibrate; try { if (canVibrate == true) { return Vibrate.feedback(type); } } catch (e) {} }
2022年05月13日
9 阅读
0 评论
0 点赞
2022-05-13
开发日记:吐司代码块
import 'package:blocknews/style/color.dart'; import 'package:flutter/material.dart'; import 'package:fluttertoast/fluttertoast.dart'; fluttertoast({ required String msg, required ToastGravity toast, Color? backgroundColor, Color? textColor, double? fontSize, }) { return Fluttertoast.showToast( msg: msg, toastLength: Toast.LENGTH_SHORT, gravity: toast, timeInSecForIosWeb: 1, backgroundColor: backgroundColor != null ? backgroundColor : appcolor.white, textColor: textColor != null ? textColor : appcolor.black, fontSize: fontSize != null ? fontSize : 12); }
2022年05月13日
13 阅读
0 评论
0 点赞
1
...
7
8
9
...
12