#結論
hintStyle: TextStyle(color: Colors.black.withOpacity(0.6)),
##例
example.dart
Widget TextFormField(
style: TextStyle(
color: Colors.black,
fontSize: 20,
),
decoration: InputDecoration(
icon: Icon(
icon,
color: Colors.black,
),
hintText: hintText,
hintStyle: TextStyle(color: Colors.black.withOpacity(0.6)),
border: InputBorder.none
),
)