I am trying to use an Angular Material checkbox, and set it by default as checked, but it is displayed as non-checked, what is wrong?
You need to make sure the checked property to be true inside the component.ts
checked
export class CheckboxComponent implements OnInit { checked = true; }