ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    Flutter 开启开发平台

    May 12, 20221 min read
     flutter config --enable-windows-desktop
     flutter config --enable-macos-desktop
     flutter config --enable-linux-desktop
    
    
    flutter run -d linux / macos / windows
    

    相关文章

    Creating Videos for App Previews

    To create app preview videos, use QuickTime Player on macOS to record iOS, macOS, or tvOS apps by connecting the device, selecting the appropriate camera and microphone, and recording.

    使用ping命令测试网络连接

    使用ping命令可以在命令提示符或终端中测试网络连接,通过发送ICMP请求并查看响应时间来检查目标IP地址或域名的可达性。

    img标签的onerror事件有什么用处?

    img标签的onerror事件用于在图像加载失败时触发,以通知用户并执行如替换图像或显示错误消息的操作,提升用户体验和网站可用性。

    Docker --build --force-recreate 区别

    --build在启动容器前构建镜像,而--force-recreate则强制重新创建容器,无视配置和镜像是否改变。

    Go 如何操作环境变量?

    在 Go 中,使用 `os` 包可以设置、获取和删除环境变量,如示例程序所示。