AngularJS Material: Material Design component library for AngularJS (1.x). Use angular/material2 channel for Angular Material (v2+).
@noderat My bad (trying to speedread these comments before checking email). I’m in the same boat. All information from the docs and source. Thing is you can figure out what it does from the same github link. Use your detective mode: At the top of the page in github search in ‘This repository’ for md-toolbar-tools
.
You’ll see a lot of code from the examples etc. You want to know WHAT it does so ignore all the files where it’s used and focus on the places where it’s defined and styled.
If you look down the left side of the page in the languages breakdown, you see it once in a javascript (If you click to filter it, It’s the place you started).
The other 5 files of importance (also filtered from the language breakdown) would be the css and scss files - So clearly for styling. Then why is it there? What’s it used for? Use your clues. The toolbar can grow in height and width and in the examples you’ve only ever seen it used to contain buttons. Is it maybe a container to keep the buttons looking slick? The name md-toolbar-tools… The css shows code restricting their height and allowing row based flex. So this is to stop your md-buttons and nav flexing everywhere! - You’re overthinking :D