Comment modifier la couleur du texte d'entrée dans Flutter
TextField(
style: TextStyle(color: Colors.red),
decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Dull Dunlin