- 博客(9)
- 收藏
- 关注
原创 harmonyOs 开发DevEco Studio 遇到 does not meet UI c omponent syntax
问题:在导入@Component 自定义的组件时编译失败。原因:编译器无法识别 Mine。解决: 规范格式,去掉换行,大括号接Mine 后面编译器才能识别。
2023-10-17 16:42:06 4993 1
原创 Flutter doctor 突然出现 Unable to find bundled Java version . 的解决方法
右键单击并单击显示包内容进入Contents,复制 jbr 文件夹创建副本,改名为 jre ,如果本来就有就直接删除原来的。
2023-03-21 14:49:22 1645
原创 Flutter 关于组件更新组件刷新的 一个方法
TabBarView 通过传参改变tab的 需要重新给_tabController 的 length赋值。可以通过改变组件的key 可以重新加载initState() 对length 重新赋值 避免报错。也可以用于组件的刷新 会重新走一遍生命周期。在使用 TabBar。
2023-02-08 15:10:26 2466
原创 flutter - 如何在Flutter中调整IconButton的大小(高度和宽度)
如何在Flutter中调整IconButton的大小(高度和宽度)?似乎需要默认的宽度和高度。没有height或width属性。new IconButton( padding: new EdgeInsets.all(0.0), color: themeData.primaryColor, icon: new Icon(Icons.clear, size: 18.0), onPressed: onDelete,)您可以使用SizedBox强制其自行调整大小。n
2021-11-17 18:39:48 7205
原创 redis启动错误: Warning: no config file specified, using the default config. In order to specify a config
windows下redis启动时遇到错误:D:\redis>redis-server.exe[13732] 29 Nov 11:35:57.446 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server.exe /path/to/redis.conf意思是没有默认的conf文件然后把命令改成:D:\redis>r
2021-10-26 22:45:48 1042
原创 js数组去重的4种方法
var arr = [1, 500, 5, 2, 3, 5, 6, 5, 4, 2, 3, 1, 500] function getUniqueArray(arr) { var newArr = []; arr.forEach(item => { if (newArr.indexOf(item) === -1) { newArr.push(item) .
2021-10-06 22:45:43 86
原创 简单深拷贝
const obj1 = { name: '小明', age:'10', color:['blue','pink','red','yellow'], friend:{ name:'小红' }}function deepCopy(obj) { if (typeof obj !=="object" || obj == null){ return obj; } let result ; if(Array.
2021-10-06 22:02:40 108
转载 CSS 特异性
通用选择器(*)具有较低的特异性,而 ID 选择器具有较高的特异性!特异性层次每个选择器在特异性层次结构中都有其位置。以下四种类别定义了选择器的特异性级别:行内样式- 行内(内联)样式直接附加到要设置样式的元素。实例:<h1 style="color: #ffffff;">。 ID- ID 是页面元素的唯一标识符,例如 #navbar。 类、属性和伪类- 此类别包括 .classes、[attributes] 和伪类,例如::hover、:focus 等。 元素和伪...
2021-10-05 09:18:25 141
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人