Flutter 如何更改浮动标签位置?

问题描述 投票:0回答:1

我有一个简单的登录表单。但我想改变浮动标签位置。我不想让浮动标签出现在边框上。为了让它更清楚:这就是我想要的:

对焦前:

对焦后:

我怎样才能做到呢?感谢您的帮助!

android ios flutter mobile
1个回答
0
投票
TextField(
  style: Theme.of(context).textTheme.headline3,
  keyboardType: TextInputType.number,
  decoration: InputDecoration(
      border: InputBorder.none,
      fillColor: Colors.black12,
      filled: true,
      labelText: 'Enter here',
  ),
  onChanged: (value) {},
)

试试这个

© www.soinside.com 2019 - 2024. All rights reserved.