移除 `InputDecoration.collapsed` 中无效的参数
摘要
#InputDecoration.collapsed
中无效的参数 floatingLabelBehavior
和 floatingLabelAlignment
已弃用。
背景
#InputDecoration.collapsed
构造函数用于创建没有标签的最小装饰。
参数 floatingLabelAlignment
和 floatingLabelBehavior
没有效果,因为使用 InputDecoration.collapsed
创建的输入装饰没有标签。
迁移指南
#要迁移,请在调用 InputDecoration.collapsed
构造函数时移除 floatingLabelBehavior
和 floatingLabelAlignment
参数的使用。这些参数没有效果。
迁移前的代码
dart
InputDecoration.collapsed(
hintText: 'Hint',
floatingLabelAlignment: FloatingLabelAlignment.center,
floatingLabelBehavior: FloatingLabelBehavior.auto,
),
迁移后的代码
dart
InputDecoration.collapsed(
hintText: 'Hint',
),
时间线
#合并到版本:v3.24.0-0.1.pre
稳定版发布:尚未
参考
#API 文档
InputDecoration.collapsed
InputDecoration.floatingLabelAlignment
InputDecoration.floatingLabelBehavior
相关问题
相关 PR
除非另有说明,否则本网站上的文档反映了 Flutter 的最新稳定版本。页面上次更新于 2024-08-06。 查看源代码 或 报告问题.