我要使标签大小与文本字段的文本大小相同。单击它时,标签会增大,尺寸会减小。
这是我尝试过的一些代码
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)),
))
答案 0 :(得分:0)
我怀疑你能那样做。也许您想要的是Text()
内TextField()
上方的另一个Column()
。