Adding Core UI Controls
Learn about the different types of buttons and form control elements provided by the Angular Material.
We'll cover the following...
Angular Material consists of many components of different types. Some of the most basic ones are:
Buttons: These are what they sound like—buttons we can push. But there are several different types that we can use, such as icon buttons, raised buttons, and more.
Form controls: These are any controls that we use to collect data from a form, such as autocomplete, checkbox, input, radio button, and drop-down list.
Navigation: These are controls used to perform navigation, such as a menu, sidenav, or toolbar.
Layout: These are controls that define how data is arranged on a page, such as a list, card, or tabs.
Popups/modals: These are overlay windows that block any user interaction until they are dismissed in any way.
Tables: These are controls that are used to display data in a tabular way. What kind of table we need depends on whether our data is massive, needs pagination, needs to be sorted, or all of these. ...