📜  文本字段占位符颜色颤动主题 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:05.700000             🧑  作者: Mango

代码示例1
ThemeData( 
  // (...)
  hintStyle: TextStyle(
     color: Colors.grey, // <-- Change this
     fontSize: null,
     fontWeight: FontWeight.w400,
     fontStyle: FontStyle.normal,
     ),
);