ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    flutter TextField 样式调整为 TextArea

    May 25, 20226 min read
    @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text("Simple Material App"),
          ),
          body: Column(
            children: <Widget>[
              Card(
                color: Colors.grey,
                child: Padding(
                  padding: EdgeInsets.all(8.0),
                  child: TextField(
                    maxLines: 8, //or null 
                    decoration: InputDecoration.collapsed(hintText: "Enter your text here"),
                  ),
                )
              )
            ],
          )
        );
      }
    

    相关文章

    什么是 Average CTR?

    平均点击率(CTR)是衡量广告效果的关键指标,反映了广告在目标受众中的受欢迎程度和有效性。

    Futter 中的 InputDecoration collapsed属性

    `InputDecoration.collapsed` 属性用于隐藏 Flutter 中 `TextField` 或 `TextFormField` 组件的边框,但需注意其他属性如 `hintText` 也可能被隐藏。

    如何抓取移动端https包和移动应用包?

    使用Charles和Fiddler抓包工具可抓取移动端HTTPS包,而Android和iOS应用包分别可通过Android Studio和Charles结合iOS代理设置抓取。

    什么是Imprint?

    Imprint是物体表面上的痕迹或标记,在出版界代表出版社的标志或品牌,在生物学中指父母染色体上的表观遗传标记。

    美国参议员提议立法禁止用 AI 发射核武器

    四名美国参议员提出议案,禁止AI或无人类控制的自治系统决定发射核武器,强调人类应掌握核武器控制权,反映出对AI军事应用的担忧和监管需求。