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

Flutter how can i change floating label position?

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

聚焦前:

聚焦后:

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

TextField(
                    style: Theme.of(context).textTheme.headline3,
                    keyboardType: TextInputType.number,
                    onChanged: (value) {
                    },
                    decoration: InputDecoration(
                      border: InputBorder.none,
                      fillColor: Colors.black12,
                      filled: true,
                      labelText: 'Enter here'
                    ),
                  ),
             

试试这个