ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    解决flutter Specs (规格) satisfying the XXXXX dependency were found, but they required a higher minimum deployment target

    Jun 21, 20222 min read

    Specs (规格) satisfying the XXXXX dependency were found, but they required a higher minimum deployment target.
    由于 podfile 里配置的target版本太低,改成platform :ios, '10.0',再去 pod install

    路径 macos/Podfile

    相关文章

    SwiftUI如何检测到用户将鼠标悬停在视图上?

    SwiftUI中通过`onHover(perform:)`修饰符实现鼠标悬停检测,如示例所示,当鼠标悬停在`Text`视图上时会触发闭包并打印消息。

    群晖 SSH 公钥免密登录

    通过设置SSH公钥和修改权限及配置文件,实现群晖免密登录并建议关闭密码登录以增强安全性。

    CSS选择器为什么不宜超过三级?

    CSS选择器不宜超过三级,以避免影响页面性能、样式问题及维护难度。

    Building a Scalable Article View Counter with Hono and Supabase

    This blog post guides you through creating a scalable article view counter using the Hono web framework and Supabase as the backend service, ensuring data integrity and automatic article creation.

    Flutter 镜像旋转组件

    Flutter 中的 Transform.rotate 组件用于将一个包含图片的 SizedBox 旋转180度。