Answers for "input color from user in flutter"

C#
13

how to change input text color in flutter

TextField(
  style: TextStyle(color: Colors.red),
  decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Posted by: Guest on June-11-2020

C# Answers by Framework

Browse Popular Code Answers by Language