How can I autofocus input element? Similar to this question, but not with AngularDart. Something like this:
Try this simple but effective function.:
function addFocusInput() { document.getElementById('text-focus').focus(); } addFocusInput();