TextField(
  cursorColor: Colors.red,
  cursorWidth: 4.0,
  maxLength: 10,
  obscureText: true,
  onChanged: (text) {
    print(text);
  },
  onSubmitted: (text) {
    print('Submitted:$text');
  },
),