I've been doing some research on this, but still can't find what I'm looking for. I have a form and would like to capture the touched event. My code looks like this:
this.form.valueChanges.subscribe(res =>{
if(res !== null){
console.log('message');
}
})
If I were to enter a value I can console the value out, but I want to be able to show a message like "field has been touched" when I touch a field.