移除 `InputDecoration.collapsed` 的無效引數
概述
#InputDecoration.collapsed 中的 `floatingLabelBehavior` 和 `floatingLabelAlignment` 引數已棄用,並且無效。
背景
#InputDecoration.collapsed 建構函式用於建立一個沒有標籤的最小化裝飾。
由於使用 InputDecoration.collapsed 建立的輸入裝飾沒有標籤,因此 floatingLabelAlignment 和 floatingLabelBehavior 引數不起任何作用。
遷移指南
#要進行遷移,請在呼叫 InputDecoration.collapsed 建構函式時移除 floatingLabelBehavior 和 floatingLabelAlignment 引數的使用。這些引數原本就沒有起到任何作用。
遷移前的程式碼
dart
InputDecoration.collapsed(
hintText: 'Hint',
floatingLabelAlignment: FloatingLabelAlignment.center,
floatingLabelBehavior: FloatingLabelBehavior.auto,
),遷移後的程式碼
dart
InputDecoration.collapsed(
hintText: 'Hint',
),時間線
#已釋出版本:3.24.0-0.1.pre
穩定版釋出:3.27.0
參考資料
#API 文件
InputDecoration.collapsedInputDecoration.floatingLabelAlignmentInputDecoration.floatingLabelBehavior
相關問題
相關 PR