ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    Flutter 构造圆角 IconButton

    May 31, 20222 min read
    CircleAvatar(
      backgroundColor: Colors.green,
      child: IconButton(
        icon: const Icon(Icons.add),
        color: Colors.white,
        onPressed: () {},
      ),
    ),
    

    相关文章

    lucide-react 的使用和相关属性配置

    Lucide-React 是一个基于 React 的图标组件库,提供了一系列矢量图标,支持通过属性配置自定义图标样式和行为,方便在 React 应用中使用。

    解决The sandbox is not in sync with the Podfile

    解决The sandbox is not in sync with the Podfile的问题,通常需要更新或重新安装CocoaPods依赖,并确保Podfile.lock文件与Xcode项目中的Pods文件夹同步。

    Go channel 和 sync.WaitGroup使用场景区别

    Go channel用于goroutine间数据传递和同步,sync.WaitGroup用于等待多个goroutine完成,两者可根据需求单独或结合使用。

    JavaScript实现单词自动折行算法,提高前端开发效率

    JavaScript实现了一个单词自动折行算法,通过将字符串按指定宽度分割成行,提高了前端开发的效率。

    Go fmt 格式化值宽度

    Go fmt 通过在格式字符串中使用数字控制值的宽度,支持字符串和数字的格式化,并可选择左对齐。