上一页 1 2 3 4 5 6 7 8 ··· 50 下一页
摘要: 使用说明,替换aliyunddns.sh文件中的参数后,调用./start.sh脚本来执行。 可以添加到crond定时任务服务中。 使用crontab -u <Linux用户名> -e命令进行写入以下内容。 # 每5分钟执行脚本检查公网IP是否变化 */5 * * * * /home/aliyund 阅读全文
posted @ 2025-01-28 10:23 星小梦 阅读(257) 评论(0) 推荐(0)
摘要: Flutter FractionallySizedBox 阅读全文
posted @ 2025-01-16 17:37 星小梦 阅读(82) 评论(0) 推荐(0)
摘要: flutter下载依赖解析失败Could not find a file named "pubspec.yaml" 阅读全文
posted @ 2025-01-16 10:46 星小梦 阅读(248) 评论(0) 推荐(0)
摘要: ══╡ EXCEPTION CAUGHT BY SCHEDULER LIBRARY ╞═════════════════════════════════════════════════════════ The following assertion was thrown during a sched 阅读全文
posted @ 2025-01-08 15:52 星小梦 阅读(126) 评论(0) 推荐(0)
摘要: 可以去gradle官方plugin仓库看看插件是否存在。 出现超时的问题多半都是网络因素,可能是复杂的网络导致你访问不了吧,配置下plugins可访问使用的仓库即可。 需要注意buildscript在plugins之上的位置。 buildscript { repositories { mavenLo 阅读全文
posted @ 2024-12-31 14:45 星小梦 阅读(753) 评论(1) 推荐(1)
摘要: 当async方法执行到 await 时,后面的代码就会整体被安排进一个新的微任务,此后的函数体变为异步执行。 MDN async: https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/await 第一 阅读全文
posted @ 2024-12-30 19:22 星小梦 阅读(220) 评论(0) 推荐(0)
摘要: Waiting for another flutter command to release the startup lock... 意思就是等待释放锁,通过Waiting for another flutter command to release the startup lock这些方法依旧不行 阅读全文
posted @ 2024-12-27 22:34 星小梦 阅读(516) 评论(0) 推荐(0)
摘要: Flutter如果你要实现 手动点击输入框进行弹出虚拟键盘,但是通过FocusNode使输入框获取到焦点不弹出虚拟键盘的业务方式。 大致的核心实现代理是: TextField( ... onTap: () { setState((){ _openIndex = i; }); // TODO 1 }, 阅读全文
posted @ 2024-12-27 13:12 星小梦 阅读(400) 评论(0) 推荐(1)
摘要: Error: Building with plugins requires symlink support. Please enable Developer Mode in your system settings. Run start ms-settings:developers to open 阅读全文
posted @ 2024-12-24 09:42 星小梦 阅读(459) 评论(0) 推荐(0)
摘要: Flutter无context下使用的方式 阅读全文
posted @ 2024-12-23 16:15 星小梦 阅读(90) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 50 下一页