如何使文字标签的大小与文字大小相同

时间:2019-05-24 09:34:37

标签: flutter

我要使标签大小与文本字段的文本大小相同。单击它时,标签会增大,尺寸会减小。

这是我尝试过的一些代码

 child: TextField(

                      style: TextStyle(fontSize: 12),

                      obscureText: true,
                      cursorColor: AppColors.gray,
                      decoration: InputDecoration(
                          labelText: "Confirm Password",
                          labelStyle: TextStyle(
                            color: AppColors.gray,
                             fontSize: 12

                          ),

                          enabledBorder: UnderlineInputBorder(
                              borderSide: BorderSide(color: AppColors.gray)),
                          focusedBorder: UnderlineInputBorder(
                              borderSide: BorderSide(color: AppColors.gray)),
                          contentPadding: EdgeInsets.all(2)),
                    ))

1 个答案:

答案 0 :(得分:0)

我怀疑你能那样做。也许您想要的是Text()TextField()上方的另一个Column()