跳至主要內容

移除 `InputDecoration.collapsed` 的無效參數

摘要

#

InputDecoration.collapsed 的無效參數 floatingLabelBehaviorfloatingLabelAlignment 已被棄用。

背景

#

InputDecoration.collapsed 建構子用於建立沒有標籤的最小裝飾。

參數 floatingLabelAlignmentfloatingLabelBehavior 沒有效果,因為使用 InputDecoration.collapsed 建立的輸入裝飾沒有標籤。

遷移指南

#

要進行遷移,請在呼叫 InputDecoration.collapsed 建構子時,移除 floatingLabelBehaviorfloatingLabelAlignment 參數的使用。這些參數沒有任何效果。

遷移前的程式碼

dart
InputDecoration.collapsed(
  hintText: 'Hint',
  floatingLabelAlignment: FloatingLabelAlignment.center,
  floatingLabelBehavior: FloatingLabelBehavior.auto,
),

遷移後的程式碼

dart
InputDecoration.collapsed(
  hintText: 'Hint',
),

時間軸

#

已於版本中實裝:v3.24.0-0.1.pre
在穩定版本中:尚未推出

參考資料

#

API 文件

相關議題

相關 PR