ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    解决 Flutter TabController 执行两次的问题

    Jun 16, 20222 min read
    _tabController.addListener(() {
            if (_tabController.indexIsChanging) {
              this.getAds();
            }
          });
    

    相关文章

    Echarts 大屏大小自适应

    Echarts大屏通过使用`nowSize`函数和百分比设置,实现图形和字体大小随视口宽度自适应调整。

    Time to Interactive (TTI)

    Time to Interactive (TTI) is a critical web performance metric measuring the time until a page is fully interactive, influencing user experience and requiring optimization through techniques like reducing render-blocking scripts and prioritizing essential resource loading.

    在docker中一键搭建IPSec/IKEv2 VPN

    本文介绍了在Docker中一键搭建IPSec/IKEv2 VPN的步骤,包括安装VPN服务器镜像、创建配置文件夹、生成PSK和证书、设置环境变量、启动服务器、创建用户、连接VPN以及验证VPN功能。

    MAC 常用软件清理

    使用软件如CleanMyMac清理系统垃圾和无用文件,同时管理Xcode、Gradle、Homebrew、VSCode、WeChat和QQ(NT)的缓存和日志以优化系统性能。

    quick-lru 基于最近最少使用策略的 LRU 缓存实现 使用详解

    本文介绍了LRU缓存策略的概念、quick-lru库的安装与使用,以及如何通过该库实现基于最近最少使用策略的缓存管理。