ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    Flutter 创建可滚动的TextView 视图

    Nov 7, 20222 min read
    Container(
        height: 200,
        child: SingleChildScrollView(
            child: Text(
                "Long text here which is longer than the container height")))
    

    相关文章

    如何跳过Windows 11的强制联网和账户登录?

    为了保护用户隐私和安全,Windows 11设置了强制联网和账户登录措施,建议用户遵循正常步骤或寻求专业帮助。

    如何在 Chrome插件中使用TailwindCSS?

    要在Chrome插件中使用TailwindCSS,需通过npm或yarn安装,配置tailwind.config.js,引入TailwindCSS,使用Webpack或Rollup构建插件,并在CSS和HTML中应用其类。

    解决 Flutter lost connection to device

    Flutter应用因未定义iOS定位权限(NSLocationWhenInUseUsageDescription或NSLocationAlwaysUsageDescription)而失去与设备的连接。

    Microsoft OmniParser Open Source: Screen Parsing Surpasses GPT-4V, Revolutionizing PC Control Agents!

    Microsoft open-sourced OmniParser, a universal screen parsing tool that outperforms GPT-4V in understanding computer and mobile phone UIs, enhancing the performance of UI agents by converting screenshots into structured formats.

    Flutter AVOID using Iterable

    避免在Flutter中使用Iterable.forEach()与函数字面量,推荐使用for循环。