Is there an easy way to set a default value for text form field?
If your form is bound to an entity, just set the default value on the entity itself using the construct method:
public function __construct() { $this->field = 'default value'; }